Fix PHPCS

This commit is contained in:
Tomek Wytrębowicz 2023-11-22 13:45:51 +01:00 committed by Justin Palmer
parent 3c1aa076d7
commit 6de4bd3ec3
No known key found for this signature in database
GPG Key ID: ACAB7C35AA2577AF
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ abstract class AbstractInterfaceServiceProvider extends AbstractServiceProvider
if ( empty( $implements ) ) {
foreach ( $this->provides as $class ) {
$implements_more = class_implements( $class );
if( $implements_more ) {
if ( $implements_more ) {
$implements = array_merge( $implements, $implements_more );
}
}