Browse Source

fixed class name

tags/0.1.0
Robin Thoni 8 years ago
parent
commit
a57af90b6a
2 changed files with 2 additions and 2 deletions
  1. 1
    1
      src/Utils/LuDataAccess.php
  2. 1
    1
      src/Utils/LuMutlipleDbo.php

+ 1
- 1
src/Utils/LuDataAccess.php View File

153
         $data = $model->take($perPage)->offset($page * $perPage)->get();
153
         $data = $model->take($perPage)->offset($page * $perPage)->get();
154
         $dbo = self::arrayToDbo($data);
154
         $dbo = self::arrayToDbo($data);
155
 
155
 
156
-        return new LuMultipleBdo($count, $dbo);
156
+        return new LuMultipleDbo($count, $dbo);
157
     }
157
     }
158
 }
158
 }

+ 1
- 1
src/Utils/LuMutlipleDbo.php View File

2
 
2
 
3
 namespace Luticate\Utils;
3
 namespace Luticate\Utils;
4
 
4
 
5
-class LuMultipleBdo implements \JsonSerializable {
5
+class LuMultipleDbo implements \JsonSerializable {
6
 
6
 
7
     /**
7
     /**
8
      * @var int
8
      * @var int

Loading…
Cancel
Save