mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-05 04:03:26 +00:00
Replace uri with url
This commit is contained in:
@@ -73,7 +73,7 @@ abstract class Controller extends BaseController
|
||||
}
|
||||
|
||||
/**
|
||||
* Method to grab all parameters from the URI.
|
||||
* Method to grab all parameters from the URL.
|
||||
*
|
||||
* @return ParameterBag
|
||||
* @throws ContainerExceptionInterface
|
||||
@@ -148,7 +148,7 @@ abstract class Controller extends BaseController
|
||||
|
||||
|
||||
/**
|
||||
* Method to help build URI's.
|
||||
* Method to help build URL's.
|
||||
*
|
||||
* @return string
|
||||
*/
|
||||
|
@@ -103,7 +103,7 @@ class ListController extends Controller
|
||||
{
|
||||
$manager = $this->getManager();
|
||||
|
||||
// read type from URI
|
||||
// read type from URL
|
||||
$type = $request->get('type') ?? 'all';
|
||||
$this->parameters->set('type', $type);
|
||||
|
||||
|
@@ -79,7 +79,7 @@ class ShowController extends Controller
|
||||
{
|
||||
// create some objects:
|
||||
$manager = $this->getManager();
|
||||
// read type from URI
|
||||
// read type from URL
|
||||
$name = $request->get('name');
|
||||
|
||||
// types to get, page size:
|
||||
|
Reference in New Issue
Block a user