aboutsummaryrefslogtreecommitdiffhomepage
path: root/main/app/sprinkles/core/src/Model
diff options
context:
space:
mode:
authorMarvin Borner2018-06-08 20:03:25 +0200
committerMarvin Borner2018-06-08 20:03:25 +0200
commit92b7dd3335a6572debeacfb5faa82c63a5e67888 (patch)
tree7ebbca22595d542ec5e2912a24a0400ac8f6b113 /main/app/sprinkles/core/src/Model
parent22a1bb27f94ea33042b0bdd35bef1a5cfa96cc0d (diff)
Some minor fixes
Diffstat (limited to 'main/app/sprinkles/core/src/Model')
-rw-r--r--main/app/sprinkles/core/src/Model/UFModel.php54
1 files changed, 27 insertions, 27 deletions
diff --git a/main/app/sprinkles/core/src/Model/UFModel.php b/main/app/sprinkles/core/src/Model/UFModel.php
index d852606..fb01357 100644
--- a/main/app/sprinkles/core/src/Model/UFModel.php
+++ b/main/app/sprinkles/core/src/Model/UFModel.php
@@ -1,27 +1,27 @@
-<?php
-/**
- * UserFrosting (http://www.userfrosting.com)
- *
- * @link https://github.com/userfrosting/UserFrosting
- * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
- */
-
-namespace UserFrosting\Sprinkle\Core\Model;
-
-use UserFrosting\Sprinkle\Core\Database\Models\Model;
-use UserFrosting\Sprinkle\Core\Facades\Debug;
-
-/**
- * UFModel Class
- *
- * @deprecated since 4.1
- * @author Alex Weissman (https://alexanderweissman.com)
- */
-abstract class UFModel extends Model
-{
- public function __construct(array $attributes = []) {
- Debug::debug("UFModel has been deprecated and will be removed in future versions. Please move your model " . static::class . " to Database/Models/ and have it extend the base Database/Models/Model class.");
-
- parent::__construct($attributes);
- }
-}
+<?php
+/**
+ * UserFrosting (http://www.userfrosting.com)
+ *
+ * @link https://github.com/userfrosting/UserFrosting
+ * @license https://github.com/userfrosting/UserFrosting/blob/master/licenses/UserFrosting.md (MIT License)
+ */
+
+namespace UserFrosting\Sprinkle\Core\Model;
+
+use UserFrosting\Sprinkle\Core\Database\Models\Model;
+use UserFrosting\Sprinkle\Core\Facades\Debug;
+
+/**
+ * UFModel Class
+ *
+ * @deprecated since 4.1
+ * @author Alex Weissman (https://alexanderweissman.com)
+ */
+abstract class UFModel extends Model
+{
+ public function __construct(array $attributes = []) {
+ Debug::debug("UFModel has been deprecated and will be removed in future versions. Please move your model " . static::class . " to Database/Models/ and have it extend the base Database/Models/Model class.");
+
+ parent::__construct($attributes);
+ }
+}