Skip to content

Commit 4546fbb

Browse files
committed
Fixed identation
1 parent a959d95 commit 4546fbb

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

lib/internal/Magento/Framework/Interception/Code/Generator/Interceptor.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -85,13 +85,8 @@ protected function _getClassMethods()
8585
*/
8686
protected function isInterceptedMethod(\ReflectionMethod $method)
8787
{
88-
return !($method->isConstructor() ||
89-
$method->isFinal() ||
90-
$method->isStatic() ||
91-
$method->isDestructor()) && !in_array(
92-
$method->getName(),
93-
['__sleep', '__wakeup', '__clone']
94-
);
88+
return !($method->isConstructor() || $method->isFinal() || $method->isStatic() || $method->isDestructor()) &&
89+
!in_array($method->getName(), ['__sleep', '__wakeup', '__clone']);
9590
}
9691

9792
/**

0 commit comments

Comments
 (0)