| Total Complexity | 5 |
| Total Lines | 32 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 11 | class DatabaseLoader extends Loader |
||
| 12 | { |
||
| 13 | /** |
||
| 14 | * @param Row $row |
||
| 15 | * @throws SourceWatcherException |
||
| 16 | */ |
||
| 17 | public function load ( Row $row ) |
||
| 18 | { |
||
| 19 | $this->insert( $row ); |
||
| 20 | } |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Row $row |
||
| 24 | * @throws SourceWatcherException |
||
| 25 | */ |
||
| 26 | protected function insert ( Row $row ) : void |
||
| 43 | } |
||
| 44 | } |
||
| 45 |