Skip to content

Commit

Permalink
Merge pull request #43 from Unlimitedbul/patch-1
Browse files Browse the repository at this point in the history
Removed random return in ClassInspector.php
  • Loading branch information
jissereitsma authored Nov 3, 2023
2 parents 7efd752 + 43c6a75 commit f035148
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion PhpClass/ClassInspector.php
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,6 @@ public function getDependencies(): array
}

$dependencies = array_merge($dependencies, $this->getDependenciesFromConstructor());
return $dependencies;
$dependencies = array_merge($dependencies, $this->getImplementedInterfaceNames());

$importedClasses = $this->tokenizer->getImportedClassnamesFromFile($this->getFilename());
Expand Down

0 comments on commit f035148

Please sign in to comment.