| Total Complexity | 1 |
| Total Lines | 27 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 17 | class FailedURLRewriteSummary extends DataObject |
||
| 18 | { |
||
| 19 | use Injectable; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * @var string |
||
| 23 | */ |
||
| 24 | private static $table_name = 'FailedURLRewriteSummary'; |
||
|
|
|||
| 25 | |||
| 26 | /** |
||
| 27 | * |
||
| 28 | * @var array |
||
| 29 | */ |
||
| 30 | private static $db = [ |
||
| 31 | 'Text' => DBText::class, |
||
| 32 | 'ImportID' => DBInt::class, |
||
| 33 | ]; |
||
| 34 | |||
| 35 | /** |
||
| 36 | * |
||
| 37 | * Format summary text so all totals are emboldened. |
||
| 38 | * |
||
| 39 | * @return string |
||
| 40 | */ |
||
| 41 | public function getText() |
||
| 46 |