Skip to content

Commit a8fec13

Browse files
author
Raul E Watson
committed
Remove @author annotation from Magento framework
1 parent 90012f2 commit a8fec13

File tree

3 files changed

+2
-8
lines changed

3 files changed

+2
-8
lines changed

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

Lines changed: 0 additions & 2 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 <joshdifabio@gmail.com>
12-
*
1311
* @api
1412
*/
1513
class ComponentRegistrar implements ComponentRegistrarInterface

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 <joshdifabio@gmail.com>
10-
*/
118
interface ComponentRegistrarInterface
129
{
1310
/**

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

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ public function load(array $exclude = [])
8080
$result = [];
8181
$excludeSet = array_flip($exclude);
8282

83-
foreach ($this->getModuleConfigs() as list($file, $contents)) {
83+
foreach ($this->getModuleConfigs() as [$file, $contents]) {
8484
try {
8585
$this->parser->loadXML($contents);
8686
} catch (\Magento\Framework\Exception\LocalizedException $e) {
@@ -111,8 +111,7 @@ public function load(array $exclude = [])
111111
* </code>
112112
*
113113
* @return \Traversable
114-
*
115-
* @author Josh Di Fabio <joshdifabio@gmail.com>
114+
* @throws \Magento\Framework\Exception\FileSystemException
116115
*/
117116
private function getModuleConfigs()
118117
{

0 commit comments

Comments
 (0)