Skip to content

Commit 1f55c6b

Browse files
committed
Changed visibility
1 parent 81d82be commit 1f55c6b

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

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

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ public function getFileContents()
7474
* @return array
7575
*/
7676

77-
protected function extract()
77+
private function extract()
7878
{
7979
$allowedOpenBraces = [T_CURLY_OPEN, T_DOLLAR_OPEN_CURLY_BRACES, T_STRING_VARNAME];
8080
$classes = [];
@@ -141,8 +141,7 @@ protected function extract()
141141
* @param integer $index
142142
* @return bool
143143
*/
144-
145-
protected function isBracedNamespace($index)
144+
private function isBracedNamespace($index)
146145
{
147146
$len = count($this->tokens);
148147
while ($index++ < $len) {
@@ -168,7 +167,6 @@ protected function isBracedNamespace($index)
168167
*
169168
* @return array
170169
*/
171-
172170
public function getClassNames()
173171
{
174172
if ($this->classNames === false) {

0 commit comments

Comments
 (0)