Skip to content

Commit

Permalink
Fix the Test-Flight test
Browse files Browse the repository at this point in the history
  • Loading branch information
cundd committed Jun 9, 2018
1 parent a8340b9 commit c3e8f7e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .test-flight.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
{
"path": "Documentation/Tutorial.md",
"path": "Documentation/Customize.md",
"bootstrap": "Tests/Documentation/Bootstrap.php"
}
4 changes: 2 additions & 2 deletions Documentation/Customize.md
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ Putting it together
-------------------

```php
namespace \Cundd\CustomRest\Rest;
namespace Cundd\CustomRest\Rest;
use Cundd\Rest\Router\Route;
use Cundd\Rest\Router\RouterInterface;
use Cundd\Rest\Http\RestRequestInterface;
Expand Down Expand Up @@ -329,7 +329,7 @@ class CustomHandler implements \Cundd\Rest\Handler\HandlerInterface {
The lines below show how the Dispatcher will invoke your `configureRoutes()` method:

```php
$handler = new CustomHandler(); // Actually get the Handler instance from the Object Manager
$handler = new \Cundd\CustomRest\Rest\CustomHandler(); // Actually get the Handler instance from the Object Manager
$handler->configureRoutes($router, $request);
```

Expand Down

0 comments on commit c3e8f7e

Please sign in to comment.