Completed
Push — master ( f51f3c...e6ace1 )
by Anton
09:58 queued 01:53
created
source/Vault/VaultRoute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -38,7 +38,7 @@
 block discarded – undo
38 38
     {
39 39
         $route = $this;
40 40
 
41
-        return function (Request $request, Response $response) use ($route) {
41
+        return function(Request $request, Response $response) use ($route) {
42 42
             $matches = $this->getMatches();
43 43
 
44 44
             return $this->callAction(
Please login to merge, or discard this patch.
source/Vault/Models/Section.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -94,7 +94,7 @@
 block discarded – undo
94 94
         foreach ($this->items as $item) {
95 95
             if (
96 96
                 $item->getTarget() == $controller
97
-                || strpos($item->getTarget(), $controller . ':') === 0
97
+                || strpos($item->getTarget(), $controller.':') === 0
98 98
             ) {
99 99
                 return true;
100 100
             }
Please login to merge, or discard this patch.
source/VaultModule.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -44,20 +44,20 @@
 block discarded – undo
44 44
     public function publish(PublisherInterface $publisher, DirectoriesInterface $directories)
45 45
     {
46 46
         $publisher->publish(
47
-            __DIR__ . '/../resources/config.php',
48
-            $directories->directory('config') . 'modules/vault.php',
47
+            __DIR__.'/../resources/config.php',
48
+            $directories->directory('config').'modules/vault.php',
49 49
             PublisherInterface::FOLLOW
50 50
         );
51 51
 
52 52
         $publisher->publish(
53
-            __DIR__ . '/views/layout.dark.php',
54
-            $directories->directory('application') . '/views/vault/layout.dark.php',
53
+            __DIR__.'/views/layout.dark.php',
54
+            $directories->directory('application').'/views/vault/layout.dark.php',
55 55
             PublisherInterface::FOLLOW
56 56
         );
57 57
 
58 58
         $publisher->publishDirectory(
59
-            __DIR__ . '/../resources',
60
-            $directories->directory('public') . 'resources',
59
+            __DIR__.'/../resources',
60
+            $directories->directory('public').'resources',
61 61
             PublisherInterface::OVERWRITE
62 62
         );
63 63
     }
Please login to merge, or discard this patch.
source/views/elements/paginator.dark.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -10,7 +10,7 @@
 block discarded – undo
10 10
     $_paginator_ = $_paginator_->hasPaginator() ? $_paginator_->getPaginator(false) : null;
11 11
 }
12 12
 
13
-$_uri_fragment_ = !empty($_tab_id_) ? '#' . $_tab_id_ : '';
13
+$_uri_fragment_ = !empty($_tab_id_) ? '#'.$_tab_id_ : '';
14 14
 
15 15
 if (
16 16
     !empty($_paginator_)
Please login to merge, or discard this patch.