Skip to content

Commit e65bf8c

Browse files
committed
Code cleanup.
1 parent 6f3dd39 commit e65bf8c

File tree

9 files changed

+11
-13
lines changed

9 files changed

+11
-13
lines changed

composer.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,10 @@
5151
},
5252
"require-dev": {
5353
"cyberspectrum/contao-toolbox": "~0.6",
54-
"contao-community-alliance/build-system-tool-branch-alias-validation": "~1.0",
5554
"contao-community-alliance/build-system-all-tasks": "~1.0",
5655
"contao-community-alliance/build-system": "~1.0",
57-
"contao-community-alliance/coding-standard": "~1.0"
56+
"contao-community-alliance/coding-standard": "~1.0",
57+
"metamodels/base-unit-tests": "~1.0"
5858
},
5959
"conflict": {
6060
"contao/core": "3.0.*"

src/MetaModels/Attribute/Select/AbstractSelect.php

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* @package MetaModels
1010
* @subpackage AttributeSelect
1111
* @author Christian Schiffler <[email protected]>
12-
* @author Stefan heimes <[email protected]>
1312
* @copyright The MetaModels team.
1413
* @license LGPL.
1514
* @filesource

src/MetaModels/Attribute/Select/AttributeTypeFactory.php

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* @package MetaModels
1010
* @subpackage AttributeSelect
1111
* @author Christian Schiffler <[email protected]>
12-
* @author Stefan heimes <[email protected]>
1312
* @copyright The MetaModels team.
1413
* @license LGPL.
1514
* @filesource

src/MetaModels/Attribute/Select/MetaModelSelect.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @package MetaModels
1010
* @subpackage AttributeSelect
1111
* @author Christian Schiffler <[email protected]>
12-
* @author Christian de la Haye <[email protected]>
12+
* @author Stefan heimes <[email protected]>
1313
* @copyright The MetaModels team.
1414
* @license LGPL.
1515
* @filesource

src/MetaModels/Attribute/Select/Select.php

+6
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@
1010
* @subpackage AttributeSelect
1111
* @author Christian Schiffler <[email protected]>
1212
* @author Christian de la Haye <[email protected]>
13+
* @author Andreas Isaak <[email protected]>
14+
* @author David Maack <[email protected]>
15+
* @author Oliver Hoff <[email protected]>
16+
* @author Paul Pflugradt <[email protected]>
17+
* @author Simon Kusterer <[email protected]>
18+
* @author Stefan Heimes <[email protected]>
1319
* @copyright The MetaModels team.
1420
* @license LGPL.
1521
* @filesource

src/MetaModels/DcGeneral/Events/MetaModels/Select/BackendSubscriber.php

-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99
* @package MetaModels
1010
* @subpackage Core
1111
* @author Christian Schiffler <[email protected]>
12-
* @author Stefan heimes <[email protected]>
1312
* @copyright The MetaModels team.
1413
* @license LGPL.
1514
* @filesource

src/MetaModels/DcGeneral/Events/Table/Attribute/Select/Subscriber.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
* @package MetaModels
1010
* @subpackage Core
1111
* @author Christian Schiffler <[email protected]>
12-
* @author Stefan heimes <[email protected]>
12+
* @author Stefan Heimes <[email protected]>
1313
* @copyright The MetaModels team.
1414
* @license LGPL.
1515
* @filesource

src/MetaModels/Filter/Rules/FilterRuleSelect.php

+1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@
99
* @package MetaModels
1010
* @subpackage AttributeSelect
1111
* @author Christian Schiffler <[email protected]>
12+
* @author Andreas Isaak <[email protected]>
1213
* @copyright The MetaModels team.
1314
* @license LGPL.
1415
* @filesource

tests/bootstrap.php

-6
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,3 @@ function includeIfExists($file)
3131
'php composer.phar install'.PHP_EOL;
3232
exit(1);
3333
}
34-
35-
if (is_dir(__DIR__ . '/../vendor/metamodels/core/tests')) {
36-
$loader->add('MetaModels\Test', realpath(__DIR__ . '/../vendor/metamodels/core/tests'));
37-
} elseif (is_dir(__DIR__.'/../../../metamodels/core/tests')) {
38-
$loader->add('MetaModels\Test', realpath(__DIR__.'/../../../metamodels/core/tests'));
39-
}

0 commit comments

Comments
 (0)