Kaynağa Gözat

PHP callables cannot containing spaces

John Kary 12 yıl önce
ebeveyn
işleme
22cab83bb1
1 değiştirilmiş dosya ile 1 ekleme ve 1 silme
  1. 1 1
      src/Composer/Script/EventDispatcher.php

+ 1 - 1
src/Composer/Script/EventDispatcher.php

@@ -151,6 +151,6 @@ class EventDispatcher
      */
     protected function isPhpScript($callable)
     {
-        return false !== strpos($callable, '::');
+        return false === strpos($callable, ' ') && false !== strpos($callable, '::');
     }
 }