Update src/Core/CustomMethods.php

Co-Authored-By: jchenevey <jchenevey@users.noreply.github.com>
This commit is contained in:
Robbie Averill 2019-01-08 15:27:38 -05:00 committed by GitHub
parent 3730d84d18
commit 068c240d38
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -279,7 +279,9 @@ trait CustomMethods
$methods = $this->findMethodsFromExtension($extension);
if ($methods) {
foreach ($methods as $method) {
if (!isset(self::$extra_methods[$class][$method])) continue;
if (!isset(self::$extra_methods[$class][$method])) {
continue;
}
$methodInfo = self::$extra_methods[$class][$method];