Skip to content

Commit

Permalink
cs fixer fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitryTronin committed Aug 8, 2022
1 parent 189b57a commit 6ca2f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Model/PHPClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function readObjectFromReflection($reflectionObject)
}
$this->interfaces = $reflectionObject->getInterfaceNames();
$this->isFinal = $reflectionObject->isFinal();
if (method_exists($reflectionObject,'isReadOnly')) {
if (method_exists($reflectionObject, 'isReadOnly')) {
$this->isReadonly = $reflectionObject->isReadOnly();
}
foreach ($reflectionObject->getMethods() as $method) {
Expand Down

0 comments on commit 6ca2f70

Please sign in to comment.