Skip to content

Commit

Permalink
Merge pull request #7 from richardmiller/fix/case-mismatch
Browse files Browse the repository at this point in the history
fix case mismatch that throws exceptions when using a debug autoloader
  • Loading branch information
docteurklein authored Aug 25, 2016
2 parents 63bbffd + 41d4fe1 commit f910d30
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/ErrorObserver/MissingMethodErrorObserver.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Rmiller\PhpSpecExtension\ErrorObserver;
namespace RMiller\PhpSpecExtension\ErrorObserver;

use RMiller\ErrorExtension\Observer\ErrorObserver;
use RMiller\PhpSpecExtension\Process\ExemplifyRunner;
Expand All @@ -24,4 +24,4 @@ public function notify(array $error)
list ($class, $method) = explode('::', $missing);
$this->exemplifyRunner->runExemplifyCommand($class, substr($method, 0, -2));
}
}
}
2 changes: 1 addition & 1 deletion src/Tester/PhpSpecTester.php
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
<?php

namespace Rmiller\PhpSpecExtension\Tester;
namespace RMiller\PhpSpecExtension\Tester;

use Behat\Testwork\Environment\Environment;
use Behat\Testwork\Specification\SpecificationIterator;
Expand Down

0 comments on commit f910d30

Please sign in to comment.