Completed
Pull Request — master (#23)
by Evan
06:09 queued 03:02
created
src/Type/Model.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
      */
59 59
     public function __get($property)
60 60
     {
61
-        if (! is_null($aliased = $this->aliasGet($property))) {
61
+        if (!is_null($aliased = $this->aliasGet($property))) {
62 62
             return $aliased;
63 63
         }
64 64
 
@@ -74,6 +74,6 @@  discard block
 block discarded – undo
74 74
      */
75 75
     public function __isset($property)
76 76
     {
77
-        return ! is_null($this->__get($property));
77
+        return !is_null($this->__get($property));
78 78
     }
79 79
 }
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -29,10 +29,10 @@
 block discarded – undo
29 29
     const ID_PROPERTY = '';
30 30
 
31 31
     /**
32
-    * Get a new query builder for the model.
33
-    *
34
-    * @return \Silk\Contracts\Query\BuildsQueries
35
-    */
32
+     * Get a new query builder for the model.
33
+     *
34
+     * @return \Silk\Contracts\Query\BuildsQueries
35
+     */
36 36
     abstract public function newQuery();
37 37
 
38 38
     /**
Please login to merge, or discard this patch.
src/Taxonomy/Taxonomy.php 1 patch
Spacing   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -45,7 +45,7 @@  discard block
 block discarded – undo
45 45
      */
46 46
     public function __construct($taxonomy)
47 47
     {
48
-        if (empty($taxonomy->name) || ! static::exists($taxonomy->name)) {
48
+        if (empty($taxonomy->name) || !static::exists($taxonomy->name)) {
49 49
             throw new NonExistentTaxonomyException;
50 50
         }
51 51
 
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
             return static::load($id);
68 68
         }
69 69
 
70
-        if (! $id || strlen($id) > 32) {
70
+        if (!$id || strlen($id) > 32) {
71 71
             throw new InvalidTaxonomyNameException('Taxonomy names must be between 1 and 32 characters in length.');
72 72
         }
73 73
 
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
      */
86 86
     public static function load($id)
87 87
     {
88
-        if (! $object = get_taxonomy($id)) {
88
+        if (!$object = get_taxonomy($id)) {
89 89
             throw new NonExistentTaxonomyException("No taxonomy exists with name '$id'.");
90 90
         }
91 91
 
@@ -142,7 +142,7 @@  discard block
 block discarded – undo
142 142
     public function postTypes()
143 143
     {
144 144
         return Collection::make($this->object_type)
145
-            ->map(function ($post_type) {
145
+            ->map(function($post_type) {
146 146
                 return PostType::load($post_type);
147 147
             });
148 148
     }
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      */
158 158
     public function unregister()
159 159
     {
160
-        if (! $this->exists($this->id())) {
160
+        if (!$this->exists($this->id())) {
161 161
             throw new NonExistentTaxonomyException;
162 162
         }
163 163
 
Please login to merge, or discard this patch.