Completed
Pull Request — master (#2)
by
unknown
11:28
created
src/Contracts/Criteria.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -4,6 +4,6 @@
 block discarded – undo
4 4
 
5 5
 interface Criteria
6 6
 {
7
-    // public function resolveKey();
8
-    // public function render();
7
+	// public function resolveKey();
8
+	// public function render();
9 9
 }
Please login to merge, or discard this patch.
src/Contracts/Expression.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -4,5 +4,5 @@
 block discarded – undo
4 4
 
5 5
 interface Expression
6 6
 {
7
-    public function render();
7
+	public function render();
8 8
 }
Please login to merge, or discard this patch.
src/Criterias/Criteria.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -5,6 +5,6 @@
 block discarded – undo
5 5
 interface Criteria
6 6
 {
7 7
 
8
-    // public function render();
9
-    // public function resolveKey();
8
+	// public function render();
9
+	// public function resolveKey();
10 10
 }
Please login to merge, or discard this patch.
src/Criterias/Builder.php 1 patch
Indentation   +32 added lines, -32 removed lines patch added patch discarded remove patch
@@ -7,36 +7,36 @@
 block discarded – undo
7 7
 abstract class Builder implements Criteria
8 8
 {
9 9
 
10
-    protected $content;
11
-
12
-    /**
13
-     * [__construct description]
14
-     * @param mixed $content
15
-     */
16
-    public function __construct($content)
17
-    {
18
-        $this->content = $content;
19
-    }
20
-
21
-    /**
22
-     * [resolveKey description]
23
-     * @return string
24
-     */
25
-    public function resolveKey()
26
-    {
27
-        if (isset($this->key)) {
28
-            return $this->key;
29
-        }
30
-
31
-        return lcfirst(class_basename(get_class($this)));
32
-    }
33
-
34
-    /**
35
-     * [getContent description]
36
-     * @return mixed
37
-     */
38
-    public function getContent()
39
-    {
40
-        return $this->content;
41
-    }
10
+	protected $content;
11
+
12
+	/**
13
+	 * [__construct description]
14
+	 * @param mixed $content
15
+	 */
16
+	public function __construct($content)
17
+	{
18
+		$this->content = $content;
19
+	}
20
+
21
+	/**
22
+	 * [resolveKey description]
23
+	 * @return string
24
+	 */
25
+	public function resolveKey()
26
+	{
27
+		if (isset($this->key)) {
28
+			return $this->key;
29
+		}
30
+
31
+		return lcfirst(class_basename(get_class($this)));
32
+	}
33
+
34
+	/**
35
+	 * [getContent description]
36
+	 * @return mixed
37
+	 */
38
+	public function getContent()
39
+	{
40
+		return $this->content;
41
+	}
42 42
 }
Please login to merge, or discard this patch.
src/Criterias/Data.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -5,5 +5,5 @@
 block discarded – undo
5 5
 class Data extends Builder
6 6
 {
7 7
 
8
-    //
8
+	//
9 9
 }
Please login to merge, or discard this patch.
src/Exceptions/DotNotationNotAvailableException.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -7,5 +7,5 @@
 block discarded – undo
7 7
 class DotNotationNotAvailableException extends Exception
8 8
 {
9 9
 
10
-    //
10
+	//
11 11
 }
Please login to merge, or discard this patch.