Skip to content

Commit 978ae40

Browse files
committed
Changed some spaces
1 parent 1f55c6b commit 978ae40

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

setup/src/Magento/Setup/Module/Di/Code/Reader/ClassesScanner.php

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,6 @@ public function getList($path)
9292
* @param \RecursiveIteratorIterator $recursiveIterator
9393
* @return array
9494
*/
95-
9695
private function extract(\RecursiveIteratorIterator $recursiveIterator)
9796
{
9897
$classes = [];
@@ -115,6 +114,10 @@ private function extract(\RecursiveIteratorIterator $recursiveIterator)
115114
return $classes;
116115
}
117116

117+
/**
118+
* @param array $classNames
119+
* @param $fileItemPath
120+
*/
118121
private function includeClasses(array $classNames, $fileItemPath)
119122
{
120123
foreach ($classNames as $className) {

setup/src/Magento/Setup/Module/Di/Code/Reader/FileClassScanner.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ class FileClassScanner
3636
*
3737
* @param string $filename
3838
*/
39-
4039
public function __construct($filename)
4140
{
4241
$filename = realpath($filename);
@@ -56,7 +55,6 @@ public function __construct($filename)
5655
*
5756
* @return string
5857
*/
59-
6058
public function getFileContents()
6159
{
6260
return file_get_contents($this->filename);
@@ -73,7 +71,6 @@ public function getFileContents()
7371
* @SuppressWarnings(PHPMD.NPathComplexity)
7472
* @return array
7573
*/
76-
7774
private function extract()
7875
{
7976
$allowedOpenBraces = [T_CURLY_OPEN, T_DOLLAR_OPEN_CURLY_BRACES, T_STRING_VARNAME];

0 commit comments

Comments
 (0)