Skip to content

Commit

Permalink
ENGCOM-7066: Remove @author annotation from Magento framework #27196
Browse files Browse the repository at this point in the history
 - Merge Pull Request #27196 from diazwatson/magento2:removeAuthorFromCore
 - Merged commits:
   1. a8fec13
   2. e01eda9
  • Loading branch information
magento-engcom-team committed Mar 9, 2020
2 parents cac512f + e01eda9 commit 38888b8
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@
/**
* Provides ability to statically register components.
*
* @author Josh Di Fabio <joshdifabio@gmail.com>
*
* @api
*/
class ComponentRegistrar implements ComponentRegistrarInterface
Expand Down Expand Up @@ -50,13 +48,12 @@ public static function register($type, $componentName, $path)
ucfirst($type) . ' \'' . $componentName . '\' from \'' . $path . '\' '
. 'has been already defined in \'' . self::$paths[$type][$componentName] . '\'.'
);
} else {
self::$paths[$type][$componentName] = str_replace('\\', '/', $path);
}
self::$paths[$type][$componentName] = str_replace('\\', '/', $path);
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getPaths($type)
{
Expand All @@ -65,7 +62,7 @@ public function getPaths($type)
}

/**
* {@inheritdoc}
* @inheritdoc
*/
public function getPath($type, $componentName)
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@
*/
namespace Magento\Framework\Component;

/**
* @author Josh Di Fabio <joshdifabio@gmail.com>
*/
interface ComponentRegistrarInterface
{
/**
Expand Down
3 changes: 1 addition & 2 deletions lib/internal/Magento/Framework/Module/ModuleList/Loader.php
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,7 @@ public function load(array $exclude = [])
* </code>
*
* @return \Traversable
*
* @author Josh Di Fabio <joshdifabio@gmail.com>
* @throws \Magento\Framework\Exception\FileSystemException
*/
private function getModuleConfigs()
{
Expand Down

0 comments on commit 38888b8

Please sign in to comment.