Passed
Push — master ( ff6a1f...abd4a3 )
by tsugumu
01:47
created
src/PipelineFactory.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -17,7 +17,7 @@
 block discarded – undo
17 17
         return $this;
18 18
     }
19 19
 
20
-    public function make($filterNames){
20
+    public function make($filterNames) {
21 21
         $filters = array_map(function($name) {
22 22
             if (is_string($name)) {
23 23
                 return $this->filterDict[$name];
Please login to merge, or discard this patch.
src/Normalizer.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@
 block discarded – undo
35 35
         $out = $in;
36 36
 
37 37
         foreach ($this->pipelines as $propName => $pipeline) {
38
-            $out = DotChainOperator::update($out, $propName, function ($in) use ($pipeline) {
38
+            $out = DotChainOperator::update($out, $propName, function($in) use ($pipeline) {
39 39
                 return $pipeline->apply($in);
40 40
             });
41 41
         }
Please login to merge, or discard this patch.
src/YourClass.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -8,7 +8,7 @@  discard block
 block discarded – undo
8 8
 *
9 9
 *  @author yourname
10 10
 */
11
-class YourClass{
11
+class YourClass {
12 12
 
13 13
    /**  @var string $m_SampleProperty define here what this variable is for, do this for every instance variable */
14 14
    private $m_SampleProperty = '';
@@ -23,7 +23,7 @@  discard block
 block discarded – undo
23 23
   *
24 24
   * @return string
25 25
   */
26
-   public function method1($param1){
26
+   public function method1($param1) {
27 27
 			return "Hello World";
28 28
    }
29 29
 }
30 30
\ No newline at end of file
Please login to merge, or discard this patch.