Completed
Push — master ( 34d5f0...715aef )
by Chauncey
07:28
created
src/Charcoal/Admin/Widget/Graph/AbstractTimeGraphWidget.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -232,9 +232,9 @@
 block discarded – undo
232 232
         return $this->dateInterval;
233 233
     }
234 234
 
235
-     /**
236
-      * @return TimeGraphWidgetInterface Chainable
237
-      */
235
+        /**
236
+         * @return TimeGraphWidgetInterface Chainable
237
+         */
238 238
     protected function setGroupingTypeByHour()
239 239
     {
240 240
         $this->setDateFormat('Y-m-d H:i');
Please login to merge, or discard this patch.
src/Charcoal/Admin/Widget/Graph/GraphWidgetInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -51,8 +51,8 @@
 block discarded – undo
51 51
      */
52 52
     public function series();
53 53
 
54
-     /**
55
-      * @return string JSONified series structure.
56
-      */
54
+        /**
55
+         * @return string JSONified series structure.
56
+         */
57 57
     public function seriesJson();
58 58
 }
Please login to merge, or discard this patch.
src/Charcoal/Admin/Property/Input/AudioInput.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -102,10 +102,10 @@
 block discarded – undo
102 102
         return $this->recordingEnabled;
103 103
     }
104 104
 
105
-     /**
106
-      * @param boolean $fileEnabled If file upload is enabled or not for this widget.
107
-      * @return AudioInput Chainable
108
-      */
105
+        /**
106
+         * @param boolean $fileEnabled If file upload is enabled or not for this widget.
107
+         * @return AudioInput Chainable
108
+         */
109 109
     public function setFileEnabled($fileEnabled)
110 110
     {
111 111
         $this->fileEnabled = !!$fileEnabled;
Please login to merge, or discard this patch.
src/Charcoal/Admin/ServiceProvider/AclServiceProvider.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -57,7 +57,7 @@
 block discarded – undo
57 57
 
58 58
             $acl = new Acl();
59 59
 
60
-             // Add admin resource for ACL
60
+                // Add admin resource for ACL
61 61
             $acl->addResource(new AclResource($resourceName));
62 62
 
63 63
             // Setup default permissions (from admin config)
Please login to merge, or discard this patch.
src/Charcoal/Admin/Script/Notification/ProcessHourlyScript.php 1 patch
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -26,10 +26,10 @@
 block discarded – undo
26 26
         return 'hourly';
27 27
     }
28 28
 
29
-      /**
30
-       * Retrieve the "minimal" date that the revisions should have been made for this script.
31
-       * @return DateTime
32
-       */
29
+        /**
30
+         * Retrieve the "minimal" date that the revisions should have been made for this script.
31
+         * @return DateTime
32
+         */
33 33
     protected function startDate()
34 34
     {
35 35
         $d = new DateTime('1 hour ago');
Please login to merge, or discard this patch.
src/Charcoal/Admin/Property/HierarchicalObjectProperty.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,8 +37,8 @@
 block discarded – undo
37 37
 
38 38
         $collection = new HierarchicalCollection($loader->load(), false);
39 39
         $collection->setPage($loader->page())
40
-                   ->setNumPerPage($loader->numPerPage())
41
-                   ->sortTree();
40
+                    ->setNumPerPage($loader->numPerPage())
41
+                    ->sortTree();
42 42
 
43 43
         return $this->parseChoices($collection);
44 44
     }
Please login to merge, or discard this patch.
src/Charcoal/Admin/Script/Notification/AbstractNotificationScript.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -78,7 +78,7 @@
 block discarded – undo
78 78
             'now' => [
79 79
                 'longPrefix'    => 'now',
80 80
                 'description'   => 'The "relative" time this script should run at. '.
81
-                                   'If nothing is provided, default "now" is used.',
81
+                                    'If nothing is provided, default "now" is used.',
82 82
                 'defaultValue'  => 'now'
83 83
             ]
84 84
         ];
Please login to merge, or discard this patch.
src/Charcoal/Admin/Script/Object/ProcessSchedulesScript.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -51,7 +51,7 @@
 block discarded – undo
51 51
             'obj-id' => [
52 52
                 'longPrefix'   => 'obj-id',
53 53
                 'description'  => 'Object ID. Must have "obj-type" set to have any effect. '.
54
-                                  'Leave empty to process all objects.',
54
+                                    'Leave empty to process all objects.',
55 55
                 'defaultValue' => ''
56 56
             ]
57 57
         ];
Please login to merge, or discard this patch.
src/Charcoal/Admin/Action/Filesystem/LoadAction.php 1 patch
Indentation   -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,6 @@
 block discarded – undo
35 35
  * - `name` (_string_) — The custom file name.
36 36
  * - `disposition` (_string_) ["inline"] — How the response should be treated.
37 37
  *   Available options: "inline", "attachment".
38
-
39 38
  * ## Response
40 39
  *
41 40
  * - {@see Psr\Http\Message\StreamInterface} - A streamed response for the given file.
Please login to merge, or discard this patch.