| 1 | <?php |
||
| 11 | class ModelManager |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param Estimator $object |
||
| 15 | * @param string $filepath |
||
| 16 | */ |
||
| 17 | public function saveToFile(Estimator $object, string $filepath) |
||
| 33 | |||
| 34 | /** |
||
| 35 | * @param string $filepath |
||
| 36 | * |
||
| 37 | * @return Estimator |
||
| 38 | */ |
||
| 39 | public function restoreFromFile(string $filepath) |
||
| 52 | } |
||
| 53 |