Browse Source

Use methods that exist.

Mark Story 8 years ago
parent
commit
219faee36f
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/Console/CommandCollection.php

+ 1 - 1
src/Console/CommandCollection.php

@@ -178,7 +178,7 @@ class CommandCollection implements IteratorAggregate, Countable
                         $this->add($info['fullName'], $info['class']);
                     }
                 } catch (InvalidArgumentException $e) {
-                    Log::warn("Could not add {$info['class']} via autodiscovery. " . $e->getMessage());
+                    Log::warning("Could not add {$info['class']} via autodiscovery. " . $e->getMessage());
                 }
             }
         };