Skip to content

Commit 5b977d0

Browse files
committed
Fix code style
1 parent de4cec1 commit 5b977d0

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

src/Factory.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of MetaModels/core.
55
*
6-
* (c) 2012-2023 The MetaModels team.
6+
* (c) 2012-2026 The MetaModels team.
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -15,7 +15,7 @@
1515
* @author David Maack <david.maack@arcor.de>
1616
* @author Sven Baumann <baumann.sv@gmail.com>
1717
* @author Ingolf Steinhardt <info@e-spin.de>
18-
* @copyright 2012-2023 The MetaModels team.
18+
* @copyright 2012-2026 The MetaModels team.
1919
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
2020
* @filesource
2121
*/
@@ -87,7 +87,7 @@ public function setServiceContainer(IMetaModelsServiceContainer $serviceContaine
8787
if ($deprecationNotice) {
8888
// @codingStandardsIgnoreStart
8989
@trigger_error(
90-
'"' .__METHOD__ . '" is deprecated and will get removed.',
90+
'"' . __METHOD__ . '" is deprecated and will get removed.',
9191
E_USER_DEPRECATED
9292
);
9393
// @codingStandardsIgnoreEnd
@@ -116,7 +116,7 @@ public function getServiceContainer()
116116

117117
// @codingStandardsIgnoreStart
118118
@trigger_error(
119-
'"' .__METHOD__ . '" is deprecated - use the services from the service container.',
119+
'"' . __METHOD__ . '" is deprecated - use the services from the service container.',
120120
E_USER_DEPRECATED
121121
);
122122
// @codingStandardsIgnoreEnd

src/Filter/Setting/FilterSettingFactory.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/**
44
* This file is part of MetaModels/core.
55
*
6-
* (c) 2012-2023 The MetaModels team.
6+
* (c) 2012-2026 The MetaModels team.
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,7 +14,7 @@
1414
* @author Christian Schiffler <c.schiffler@cyberspectrum.de>
1515
* @author Sven Baumann <baumann.sv@gmail.com>
1616
* @author Ingolf Steinhardt <info@e-spin.de>
17-
* @copyright 2012-2023 The MetaModels team.
17+
* @copyright 2012-2026 The MetaModels team.
1818
* @license https://github.com/MetaModels/core/blob/master/LICENSE LGPL-3.0-or-later
1919
* @filesource
2020
*/
@@ -101,7 +101,7 @@ public function setServiceContainer(IMetaModelsServiceContainer $serviceContaine
101101
if ($deprecationNotice) {
102102
// @codingStandardsIgnoreStart
103103
@trigger_error(
104-
'"' .__METHOD__ . '" is deprecated and will get removed.',
104+
'"' . __METHOD__ . '" is deprecated and will get removed.',
105105
E_USER_DEPRECATED
106106
);
107107
// @codingStandardsIgnoreEnd
@@ -136,7 +136,7 @@ public function getServiceContainer()
136136
{
137137
// @codingStandardsIgnoreStart
138138
@trigger_error(
139-
'"' .__METHOD__ . '" is deprecated - use the services from the service container.',
139+
'"' . __METHOD__ . '" is deprecated - use the services from the service container.',
140140
E_USER_DEPRECATED
141141
);
142142
// @codingStandardsIgnoreEnd

0 commit comments

Comments
 (0)