Completed
Push — master ( 9c28d3...3dae15 )
by Christopher
06:31
created
generated-classes/TechWilk/Rota/Group.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -19,11 +19,11 @@
 block discarded – undo
19 19
     {
20 20
         return EventQuery::create()
21 21
             ->useEventPersonQuery()
22
-              ->useUserRoleQuery()
22
+                ->useUserRoleQuery()
23 23
                 ->useRoleQuery()
24
-                  ->filterByGroup($this)
24
+                    ->filterByGroup($this)
25
+                ->endUse()
25 26
                 ->endUse()
26
-              ->endUse()
27 27
             ->endUse()
28 28
             ->orderByDate('desc')
29 29
             ->findOne();
Please login to merge, or discard this patch.
generated-conf/config.php 2 patches
Indentation   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -7,18 +7,18 @@  discard block
 block discarded – undo
7 7
 $serviceContainer->setAdapterClass('default', 'mysql');
8 8
 $manager = new \Propel\Runtime\Connection\ConnectionManagerSingle();
9 9
 $manager->setConfiguration([
10
-  'classname'  => 'Propel\\Runtime\\Connection\\ConnectionWrapper',
11
-  'dsn'        => 'mysql:host='.$config['db']['host'].';dbname='.$config['db']['dbname'],
12
-  'user'       => $config['db']['user'],
13
-  'password'   => $config['db']['pass'],
14
-  'attributes' => [
10
+    'classname'  => 'Propel\\Runtime\\Connection\\ConnectionWrapper',
11
+    'dsn'        => 'mysql:host='.$config['db']['host'].';dbname='.$config['db']['dbname'],
12
+    'user'       => $config['db']['user'],
13
+    'password'   => $config['db']['pass'],
14
+    'attributes' => [
15 15
     'ATTR_EMULATE_PREPARES' => false,
16 16
     'ATTR_TIMEOUT'          => 30,
17
-  ],
18
-  'model_paths' => [
17
+    ],
18
+    'model_paths' => [
19 19
     0 => 'src',
20 20
     1 => 'vendor',
21
-  ],
21
+    ],
22 22
 ]);
23 23
 $manager->setName('default');
24 24
 $serviceContainer->setConnectionManager('default', $manager);
@@ -26,16 +26,16 @@  discard block
 block discarded – undo
26 26
 $serviceContainer->setAdapterClass('test', 'sqlite');
27 27
 $manager = new \Propel\Runtime\Connection\ConnectionManagerSingle();
28 28
 $manager->setConfiguration([
29
-  'classname'  => 'Propel\\Runtime\\Connection\\ConnectionWrapper',
30
-  'dsn'        => 'sqlite:/var/tmp/test.db',
31
-  'attributes' => [
29
+    'classname'  => 'Propel\\Runtime\\Connection\\ConnectionWrapper',
30
+    'dsn'        => 'sqlite:/var/tmp/test.db',
31
+    'attributes' => [
32 32
     'ATTR_EMULATE_PREPARES' => false,
33 33
     'ATTR_TIMEOUT'          => 30,
34
-  ],
35
-  'model_paths' => [
34
+    ],
35
+    'model_paths' => [
36 36
     0 => 'src',
37 37
     1 => 'vendor',
38
-  ],
38
+    ],
39 39
 ]);
40 40
 $manager->setName('test');
41 41
 $serviceContainer->setConnectionManager('test', $manager);
Please login to merge, or discard this patch.
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-include __DIR__.'/../config/database.php';
3
+include __DIR__ . '/../config/database.php';
4 4
 $serviceContainer = \Propel\Runtime\Propel::getServiceContainer();
5 5
 $serviceContainer->checkVersion('2.0.0-dev');
6 6
 
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 $manager = new \Propel\Runtime\Connection\ConnectionManagerSingle();
9 9
 $manager->setConfiguration([
10 10
   'classname'  => 'Propel\\Runtime\\Connection\\ConnectionWrapper',
11
-  'dsn'        => 'mysql:host='.$config['db']['host'].';dbname='.$config['db']['dbname'],
11
+  'dsn'        => 'mysql:host=' . $config['db']['host'] . ';dbname=' . $config['db']['dbname'],
12 12
   'user'       => $config['db']['user'],
13 13
   'password'   => $config['db']['pass'],
14 14
   'attributes' => [
Please login to merge, or discard this patch.
src/config.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,9 +1,9 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-require __DIR__.'/../config/database.php';
4
-require __DIR__.'/../config/auth.php';
5
-require __DIR__.'/../config/email.php';
6
-require __DIR__.'/../config/recording.php';
3
+require __DIR__ . '/../config/database.php';
4
+require __DIR__ . '/../config/auth.php';
5
+require __DIR__ . '/../config/email.php';
6
+require __DIR__ . '/../config/recording.php';
7 7
 
8 8
 function getConfig()
9 9
 {
Please login to merge, or discard this patch.
src/settings.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 
3
-require_once __DIR__.'/config.php';
3
+require_once __DIR__ . '/config.php';
4 4
 
5 5
 $config = getConfig();
6 6
 
@@ -12,13 +12,13 @@  discard block
 block discarded – undo
12 12
 
13 13
         // Renderer settings
14 14
         'renderer' => [
15
-            'template_path' => __DIR__.'/../templates/',
15
+            'template_path' => __DIR__ . '/../templates/',
16 16
         ],
17 17
 
18 18
         // Monolog settings
19 19
         'logger' => [
20 20
             'name'  => 'rota',
21
-            'path'  => __DIR__.'/../logs/app.log',
21
+            'path'  => __DIR__ . '/../logs/app.log',
22 22
             'level' => \Monolog\Logger::DEBUG,
23 23
         ],
24 24
 
Please login to merge, or discard this patch.
src/classes/Site.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -39,7 +39,7 @@
 block discarded – undo
39 39
         $hostname = $_SERVER['HTTP_HOST'];
40 40
 
41 41
         return [
42
-            'base'     => $http.'://'.$hostname,
42
+            'base'     => $http . '://' . $hostname,
43 43
             'protocol' => $http,
44 44
             'host'     => $hostname,
45 45
         ];
Please login to merge, or discard this patch.
src/classes/AuthProvider/UsernamePassword/OneBodyAuth.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
         $base_uri = $this->guzzle->getConfig()['base_uri'];
72 72
 
73 73
         if (strlen($base_uri) > 0) {
74
-            $url = $base_uri.'/account/new?forgot=true';
74
+            $url = $base_uri . '/account/new?forgot=true';
75 75
         }
76 76
 
77 77
         return $url;
Please login to merge, or discard this patch.
src/classes/Crypt.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -32,7 +32,7 @@
 block discarded – undo
32 32
     public static function generateInt($min, $max)
33 33
     {
34 34
         if ($min >= $max) {
35
-            throw new InvalidArgumentException('Invalid constraints - minimum ('.$min.') is above the maximum ('.$max.')');
35
+            throw new InvalidArgumentException('Invalid constraints - minimum (' . $min . ') is above the maximum (' . $max . ')');
36 36
         }
37 37
 
38 38
         if (function_exists('random_int')) { // use secure random numbers when available
Please login to merge, or discard this patch.
src/classes/Controller/AvailabilityController.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@  discard block
 block discarded – undo
14 14
 {
15 15
     public function getAvailabilityForm(ServerRequestInterface $request, ResponseInterface $response, $args)
16 16
     {
17
-        $this->logger->info("Fetch user availability GET '/user/".$args['id']."/availability'");
17
+        $this->logger->info("Fetch user availability GET '/user/" . $args['id'] . "/availability'");
18 18
 
19 19
         $u = UserQuery::create()->findPk($args['id']);
20 20
 
@@ -33,7 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     public function postAvailability(ServerRequestInterface $request, ResponseInterface $response, $args)
35 35
     {
36
-        $this->logger->info("Update user availability POST '/user/".$args['id']."/availability'");
36
+        $this->logger->info("Update user availability POST '/user/" . $args['id'] . "/availability'");
37 37
 
38 38
         $u = UserQuery::create()
39 39
             ->findPk($args['id']);
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
                 $a->setAvailable(false);
63 63
             }
64 64
 
65
-            if (strlen($data['event'.$eventId.'comment']) > 0) {
66
-                $a->setComment($data['event'.$eventId.'comment']);
65
+            if (strlen($data['event' . $eventId . 'comment']) > 0) {
66
+                $a->setComment($data['event' . $eventId . 'comment']);
67 67
             } else {
68 68
                 $a->setComment(null);
69 69
             }
Please login to merge, or discard this patch.
src/classes/Controller/RoleController.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function getAssignRolesForm(ServerRequestInterface $request, ResponseInterface $response, $args)
15 15
     {
16
-        $this->logger->info("Fetch user GET '/user/".$args['id']."/roles'");
16
+        $this->logger->info("Fetch user GET '/user/" . $args['id'] . "/roles'");
17 17
         $r = RoleQuery::create()->find();
18 18
         $u = UserQuery::create()->findPK($args['id']);
19 19
 
@@ -26,7 +26,7 @@  discard block
 block discarded – undo
26 26
 
27 27
     public function postUserAssignRoles(ServerRequestInterface $request, ResponseInterface $response, $args)
28 28
     {
29
-        $this->logger->info("Create user people POST '/user/".$args['id']."/roles'");
29
+        $this->logger->info("Create user people POST '/user/" . $args['id'] . "/roles'");
30 30
 
31 31
         $userId = filter_var($args['id'], FILTER_SANITIZE_NUMBER_INT);
32 32
         $existingRoles = RoleQuery::create()->useUserRoleQuery()->filterByUserId($userId)->endUse()->find();
Please login to merge, or discard this patch.