Completed
Push — master ( bcfab5...a273fd )
by Oscar
02:55
created
src/Entity.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@  discard block
 block discarded – undo
88 88
      *
89 89
      * @throws SimpleCrudException
90 90
      *
91
-     * @return QueryInterface|null
91
+     * @return FieldInterface
92 92
      */
93 93
     public function __call($name, $arguments)
94 94
     {
@@ -173,7 +173,7 @@  discard block
 block discarded – undo
173 173
      *
174 174
      * @param string $name
175 175
      *
176
-     * @return null|mixed
176
+     * @return string
177 177
      */
178 178
     public function getAttribute($name)
179 179
     {
Please login to merge, or discard this patch.
src/autoloader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-spl_autoload_register(function ($class) {
3
+spl_autoload_register(function($class) {
4 4
     if (strpos($class, 'SimpleCrud\\') !== 0) {
5 5
         return;
6 6
     }
Please login to merge, or discard this patch.