1 | <?php |
||
9 | class MongoSaver implements SaverInterface |
||
10 | { |
||
11 | /** |
||
12 | * @var MongoCollection |
||
13 | */ |
||
14 | private $_collection; |
||
15 | |||
16 | /** |
||
17 | * @var MongoId lastProfilingId |
||
18 | */ |
||
19 | private static $lastProfilingId; |
||
20 | |||
21 | public function __construct(MongoCollection $collection) |
||
25 | |||
26 | public function save(array $data) |
||
52 | |||
53 | /** |
||
54 | * Return profiling ID |
||
55 | * @return MongoId lastProfilingId |
||
56 | */ |
||
57 | public static function getLastProfilingId() |
||
65 | } |
||
66 |