Completed
Branch master (d32485)
by Luke
04:09
created
lib/ComponentManager/ContainerAwareTrait.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -27,7 +27,7 @@
 block discarded – undo
27 27
      *
28 28
      * @return void
29 29
      */
30
-    public function setContainer(ContainerInterface $container=null) {
30
+    public function setContainer(ContainerInterface $container = null) {
31 31
         $this->container = $container;
32 32
     }
33 33
 }
Please login to merge, or discard this patch.
lib/ComponentManager/VersionControl/Git/GitVersionControl.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -100,7 +100,7 @@
 block discarded – undo
100 100
      *
101 101
      * @return void
102 102
      */
103
-    public function fetch($remote, $withTags=true) {
103
+    public function fetch($remote, $withTags = true) {
104 104
         $process = $this->getProcess(['fetch', $remote]);
105 105
         $process->run();
106 106
 
Please login to merge, or discard this patch.
lib/ComponentManager/Exception/AbstractException.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,8 @@
 block discarded – undo
32 32
      */
33 33
     public function __toString() {
34 34
         return sprintf(static::MESSAGE_FORMAT, $this->getExceptionType(),
35
-                       $this->getExceptionCodeName(), $this->code,
36
-                       $this->message);
35
+                        $this->getExceptionCodeName(), $this->code,
36
+                        $this->message);
37 37
     }
38 38
 
39 39
     /**
Please login to merge, or discard this patch.
etc/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@
 block discarded – undo
9 9
  */
10 10
 
11 11
 // Error reporting
12
-ini_set('display_errors',  'on');
12
+ini_set('display_errors', 'on');
13 13
 ini_set('error_reporting', E_ALL);
14 14
 
15 15
 // Set the default timezone if not already set
Please login to merge, or discard this patch.
etc/services.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -114,7 +114,7 @@  discard block
 block discarded – undo
114 114
 ]);
115 115
 
116 116
 $container->register('logger.console.formatter',
117
-                     'Bramus\Monolog\Formatter\ColoredLineFormatter');
117
+                        'Bramus\Monolog\Formatter\ColoredLineFormatter');
118 118
 
119 119
 $container->addCompilerPass(new LoggerChannelPass());
120 120
 
@@ -129,6 +129,6 @@  discard block
 block discarded – undo
129 129
  * Register the console application entry point.
130 130
  */
131 131
 $application = new Definition('\ComponentManager\ComponentManager',
132
-                              [$commandReferences]);
132
+                                [$commandReferences]);
133 133
 $application->addMethodCall('setContainer', [new Reference('service_container')]);
134 134
 $container->setDefinition('application', $application);
Please login to merge, or discard this patch.