Completed
Push — master ( 24e3ba...17f41c )
by
unknown
01:39
created
src/Rendered/Criteria.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 	protected $render;
8 8
 
9
-    public function __construct(Rendered $render)
10
-    {
11
-        $this->render = $render;
12
-    }
9
+	public function __construct(Rendered $render)
10
+	{
11
+		$this->render = $render;
12
+	}
13 13
 
14
-    public function handle($content)
15
-    {
16
-        return $this->render->handle($content);
17
-    }
14
+	public function handle($content)
15
+	{
16
+		return $this->render->handle($content);
17
+	}
18 18
 }
Please login to merge, or discard this patch.
src/Rendered/Render.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 	protected $render;
8 8
 
9
-    public function __construct($class)
10
-    {
11
-        $this->class = $class;
12
-    }
9
+	public function __construct($class)
10
+	{
11
+		$this->class = $class;
12
+	}
13 13
 
14
-    public function handle($content)
15
-    {
16
-        return [lcfirst(class_basename(get_class($this->class))) => $content];
17
-    }
14
+	public function handle($content)
15
+	{
16
+		return [lcfirst(class_basename(get_class($this->class))) => $content];
17
+	}
18 18
 }
Please login to merge, or discard this patch.
src/Rendered/Subset.php 1 patch
Indentation   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -4,21 +4,21 @@
 block discarded – undo
4 4
 
5 5
 class Subset implements Rendered {
6 6
 
7
-    protected $render;
7
+	protected $render;
8 8
 
9
-    public function __construct(Rendered $render)
10
-    {
11
-        $this->render = $render;
12
-    }
9
+	public function __construct(Rendered $render)
10
+	{
11
+		$this->render = $render;
12
+	}
13 13
 
14
-    public function handle($content)
15
-    {
16
-        $subset = lcfirst(class_basename(get_class($this->render->class)));
14
+	public function handle($content)
15
+	{
16
+		$subset = lcfirst(class_basename(get_class($this->render->class)));
17 17
 
18
-        if ($subset === 'series' && (! $this->render->class->cascade || starts_with($this->render->class->cascade, 'series.'))) {
19
-            $content = [$content];
20
-        }
18
+		if ($subset === 'series' && (! $this->render->class->cascade || starts_with($this->render->class->cascade, 'series.'))) {
19
+			$content = [$content];
20
+		}
21 21
 
22
-        return $this->render->handle($content);
23
-    }
22
+		return $this->render->handle($content);
23
+	}
24 24
 }
25 25
\ No newline at end of file
Please login to merge, or discard this patch.
src/Rendered/Expression.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -6,13 +6,13 @@
 block discarded – undo
6 6
 
7 7
 	protected $render;
8 8
 
9
-    public function __construct(Rendered $render)
10
-    {
11
-        $this->render = $render;
12
-    }
9
+	public function __construct(Rendered $render)
10
+	{
11
+		$this->render = $render;
12
+	}
13 13
 
14
-    public function handle($content)
15
-    {
16
-        return $this->render->handle("#!!" . $content->render() . "!!#");
17
-    }
14
+	public function handle($content)
15
+	{
16
+		return $this->render->handle("#!!" . $content->render() . "!!#");
17
+	}
18 18
 }
19 19
\ No newline at end of file
Please login to merge, or discard this patch.