Test Failed
Push — develop ( c3d980...50f9bb )
by nguereza
02:14
created
src/Service/Provider/CacheServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
     public function register(): void
72 72
     {
73 73
         $this->app->bind(Filesystem::class);
74
-        $this->app->bind(Configuration::class, function (ContainerInterface $app) {
74
+        $this->app->bind(Configuration::class, function(ContainerInterface $app) {
75 75
             return new Configuration($app->get(Config::class)->get('cache', []));
76 76
         });
77 77
         $this->app->bind(AdapterInterface::class, LocalAdapter::class);
Please login to merge, or discard this patch.
src/Demo/RedirectResponse.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,8 +15,7 @@  discard block
 block discarded – undo
15 15
  *
16 16
  * @author tony
17 17
  */
18
-class RedirectResponse extends Response
19
-{
18
+class RedirectResponse extends Response {
20 19
 
21 20
     protected string $url = '/';
22 21
 
@@ -24,8 +23,7 @@  discard block
 block discarded – undo
24 23
      * Create new instance
25 24
      * @param string $url
26 25
      */
27
-    public function __construct(string $url = '/')
28
-    {
26
+    public function __construct(string $url = '/') {
29 27
         parent::__construct(301);
30 28
         $this->url = $url;
31 29
     }
Please login to merge, or discard this patch.
src/Demo/LoginAction.php 2 patches
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
                 $this->template,
77 77
                 'login',
78 78
                 [
79
-                   'name' => $name
79
+                    'name' => $name
80 80
                 ]
81 81
             );
82 82
         }
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,7 @@
 block discarded – undo
20 20
  *
21 21
  * @author tony
22 22
  */
23
-class LoginAction implements RequestHandlerInterface
24
-{
23
+class LoginAction implements RequestHandlerInterface {
25 24
 
26 25
     protected LoggerInterface $logger;
27 26
     protected Application $app;
Please login to merge, or discard this patch.
src/Demo/HomeAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
  *
20 20
  * @author tony
21 21
  */
22
-class HomeAction implements RequestHandlerInterface
23
-{
22
+class HomeAction implements RequestHandlerInterface {
24 23
 
25 24
     protected LoggerInterface $logger;
26 25
     protected Application $app;
Please login to merge, or discard this patch.
src/Demo/LogoutAction.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -20,8 +20,7 @@
 block discarded – undo
20 20
  *
21 21
  * @author tony
22 22
  */
23
-class LogoutAction implements RequestHandlerInterface
24
-{
23
+class LogoutAction implements RequestHandlerInterface {
25 24
 
26 25
     protected LoggerInterface $logger;
27 26
     protected Application $app;
Please login to merge, or discard this patch.