Skip to content

Commit 38888b8

Browse files
ENGCOM-7066: Remove @author annotation from Magento framework #27196
- Merge Pull Request #27196 from diazwatson/magento2:removeAuthorFromCore - Merged commits: 1. a8fec13 2. e01eda9
2 parents cac512f + e01eda9 commit 38888b8

File tree

3 files changed

+4
-11
lines changed

3 files changed

+4
-11
lines changed

lib/internal/Magento/Framework/Component/ComponentRegistrar.php

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,6 @@
88
/**
99
* Provides ability to statically register components.
1010
*
11-
* @author Josh Di Fabio <[email protected]>
12-
*
1311
* @api
1412
*/
1513
class ComponentRegistrar implements ComponentRegistrarInterface
@@ -50,13 +48,12 @@ public static function register($type, $componentName, $path)
5048
ucfirst($type) . ' \'' . $componentName . '\' from \'' . $path . '\' '
5149
. 'has been already defined in \'' . self::$paths[$type][$componentName] . '\'.'
5250
);
53-
} else {
54-
self::$paths[$type][$componentName] = str_replace('\\', '/', $path);
5551
}
52+
self::$paths[$type][$componentName] = str_replace('\\', '/', $path);
5653
}
5754

5855
/**
59-
* {@inheritdoc}
56+
* @inheritdoc
6057
*/
6158
public function getPaths($type)
6259
{
@@ -65,7 +62,7 @@ public function getPaths($type)
6562
}
6663

6764
/**
68-
* {@inheritdoc}
65+
* @inheritdoc
6966
*/
7067
public function getPath($type, $componentName)
7168
{

lib/internal/Magento/Framework/Component/ComponentRegistrarInterface.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@
55
*/
66
namespace Magento\Framework\Component;
77

8-
/**
9-
* @author Josh Di Fabio <[email protected]>
10-
*/
118
interface ComponentRegistrarInterface
129
{
1310
/**

lib/internal/Magento/Framework/Module/ModuleList/Loader.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -111,8 +111,7 @@ public function load(array $exclude = [])
111111
* </code>
112112
*
113113
* @return \Traversable
114-
*
115-
* @author Josh Di Fabio <[email protected]>
114+
* @throws \Magento\Framework\Exception\FileSystemException
116115
*/
117116
private function getModuleConfigs()
118117
{

0 commit comments

Comments
 (0)