Browse Source

fixed lu date time name

develop
Robin Thoni 8 years ago
parent
commit
6f96f87d92
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      src/Utils/Dbo/LuDbo.php

+ 1
- 1
src/Utils/Dbo/LuDbo.php View File

97
         }
97
         }
98
         else if ($type == "datetime" || $type == "date" || $type == "DateTime"
98
         else if ($type == "datetime" || $type == "date" || $type == "DateTime"
99
             || $type == 'Carbon\Carbon' || $type == 'Carbon') {
99
             || $type == 'Carbon\Carbon' || $type == 'Carbon') {
100
-            $dbo = LuDateDateTime::jsonDeserialize($value);
100
+            $dbo = LuDateTimeDbo::jsonDeserialize($value);
101
             $dbo->checkConstraints($constraints);
101
             $dbo->checkConstraints($constraints);
102
             return $dbo->getDateTime();
102
             return $dbo->getDateTime();
103
         }
103
         }

Loading…
Cancel
Save