@@ -26,7 +26,7 @@ This is the preferred way of declaring an action:
2626<?php
2727namespace Test\Controllers;
2828
29- use Mouf\Mvc \Splash\Annotations\URL;
29+ use TheCodingMachine \Splash\Annotations\URL;
3030
3131class MyController {
3232
@@ -88,9 +88,9 @@ Splash makes that very easy to handle. You can just add a @Get or @Post annotati
8888<?php
8989namespace Test\Controllers;
9090
91- use Mouf\Mvc \Splash\Annotations\URL;
92- use Mouf\Mvc \Splash\Annotations\Get;
93- use Mouf\Mvc \Splash\Annotations\Post;
91+ use TheCodingMachine \Splash\Annotations\URL;
92+ use TheCodingMachine \Splash\Annotations\Get;
93+ use TheCodingMachine \Splash\Annotations\Post;
9494
9595/**
9696 * This is a sample user controller.
@@ -168,7 +168,7 @@ Therefore, you can write things like:
168168
169169``` php
170170<?php
171- use Mouf\Mvc \Splash\Annotations\URL;
171+ use TheCodingMachine \Splash\Annotations\URL;
172172use Zend\Diactoros\Response\HtmlResponse;
173173use Zend\Diactoros\Response\JsonResponse;
174174
@@ -200,8 +200,8 @@ implementing the [`HtmlElementInterface`](http://mouf-php.com/packages/mouf/html
200200
201201``` php
202202<?php
203- use Mouf\Mvc \Splash\Annotations\URL;
204- use Mouf\Mvc \Splash\HtmlResponse;
203+ use TheCodingMachine \Splash\Annotations\URL;
204+ use TheCodingMachine \Splash\HtmlResponse;
205205
206206class MyController {
207207 /**
@@ -236,7 +236,7 @@ Uploaded files are also directly available from the signature of the method:
236236** PHP** :
237237``` php
238238<?php
239- use Mouf\Mvc \Splash\Annotations\URL;
239+ use TheCodingMachine \Splash\Annotations\URL;
240240use Psr\Http\Message\UploadedFileInterface;
241241
242242class MyController {
@@ -269,7 +269,7 @@ Here is a sample:
269269
270270``` php
271271<?php
272- use Mouf\Mvc \Splash\Annotations\Action;
272+ use TheCodingMachine \Splash\Annotations\Action;
273273
274274/**
275275 * This is my test controller.
0 commit comments