Completed
Push — master ( c4e3cd...c5cae6 )
by Anton
05:38
created
source/Spiral/ORM/Entities/Relations/ManyToMorphed.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -189,7 +189,7 @@
 block discarded – undo
189 189
      * $tag->tagged->posts;
190 190
      *
191 191
      * @param string $alias
192
-     * @return RecordEntity|RecordIterator
192
+     * @return null|EntityInterface
193 193
      */
194 194
     public function __get($alias)
195 195
     {
Please login to merge, or discard this patch.
source/Spiral/Encrypter/Encrypter.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -135,9 +135,9 @@
 block discarded – undo
135 135
 
136 136
         $vector = $this->createIV(openssl_cipher_iv_length($this->cipher));
137 137
 
138
-        try{
138
+        try {
139 139
                 $serialized = json_encode($data);
140
-        } catch (\ErrorException $e){
140
+        } catch (\ErrorException $e) {
141 141
             throw new EncrypterException("Unsupported data format", null, $e);
142 142
         }
143 143
         
Please login to merge, or discard this patch.