File tree Expand file tree Collapse file tree 3 files changed +2
-8
lines changed
lib/internal/Magento/Framework Expand file tree Collapse file tree 3 files changed +2
-8
lines changed Original file line number Diff line number Diff line change 8
8
/**
9
9
* Provides ability to statically register components.
10
10
*
11
- * @author Josh Di Fabio <joshdifabio@gmail.com>
12
- *
13
11
* @api
14
12
*/
15
13
class ComponentRegistrar implements ComponentRegistrarInterface
Original file line number Diff line number Diff line change 5
5
*/
6
6
namespace Magento \Framework \Component ;
7
7
8
- /**
9
- * @author Josh Di Fabio <joshdifabio@gmail.com>
10
- */
11
8
interface ComponentRegistrarInterface
12
9
{
13
10
/**
Original file line number Diff line number Diff line change @@ -80,7 +80,7 @@ public function load(array $exclude = [])
80
80
$ result = [];
81
81
$ excludeSet = array_flip ($ exclude );
82
82
83
- foreach ($ this ->getModuleConfigs () as list ( $ file , $ contents) ) {
83
+ foreach ($ this ->getModuleConfigs () as [ $ file , $ contents] ) {
84
84
try {
85
85
$ this ->parser ->loadXML ($ contents );
86
86
} catch (\Magento \Framework \Exception \LocalizedException $ e ) {
@@ -111,8 +111,7 @@ public function load(array $exclude = [])
111
111
* </code>
112
112
*
113
113
* @return \Traversable
114
- *
115
- * @author Josh Di Fabio <joshdifabio@gmail.com>
114
+ * @throws \Magento\Framework\Exception\FileSystemException
116
115
*/
117
116
private function getModuleConfigs ()
118
117
{
You can’t perform that action at this time.
0 commit comments