-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
21 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of MetaModels/core. | ||
* | ||
* (c) 2012-2022 The MetaModels team. | ||
* (c) 2012-2024 The MetaModels team. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,7 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2012-2022 The MetaModels team. | ||
* @copyright 2012-2024 The MetaModels team. | ||
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -35,21 +35,21 @@ class BreadcrumbStoreFactory | |
* | ||
* @var IconBuilder | ||
*/ | ||
private $iconBuilder; | ||
private IconBuilder $iconBuilder; | ||
|
||
/** | ||
* The translator. | ||
* | ||
* @var TranslatorInterface | ||
*/ | ||
private $translator; | ||
private TranslatorInterface $translator; | ||
|
||
/** | ||
* The request stack. | ||
* | ||
* @var RequestStack | ||
*/ | ||
private $requestStack; | ||
private RequestStack $requestStack; | ||
|
||
/** | ||
* Create a new instance. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
/** | ||
* This file is part of MetaModels/core. | ||
* | ||
* (c) 2012-2022 The MetaModels team. | ||
* (c) 2012-2024 The MetaModels team. | ||
* | ||
* For the full copyright and license information, please view the LICENSE | ||
* file that was distributed with this source code. | ||
|
@@ -14,7 +14,7 @@ | |
* @author Christian Schiffler <[email protected]> | ||
* @author Sven Baumann <[email protected]> | ||
* @author Ingolf Steinhardt <[email protected]> | ||
* @copyright 2012-2022 The MetaModels team. | ||
* @copyright 2012-2024 The MetaModels team. | ||
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later | ||
* @filesource | ||
*/ | ||
|
@@ -33,7 +33,7 @@ trait ConnectionTrait | |
* | ||
* @var Connection | ||
*/ | ||
private $connection; | ||
private Connection $connection; | ||
|
||
/** | ||
* Set the database connection. | ||
|
@@ -51,7 +51,6 @@ public function setConnection(Connection $connection) | |
* Retrieve the row. | ||
* | ||
* @param string $rowId The id. | ||
* | ||
* @param string $table The table to fetch from. | ||
* | ||
* @return object | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters