| Total Complexity | 2 |
| Total Lines | 28 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 1 |
| 1 | <?php |
||
| 13 | class PageWorkStatus |
||
| 14 | { |
||
| 15 | /** |
||
| 16 | * @var string |
||
| 17 | */ |
||
| 18 | public $title; |
||
| 19 | public $wikiText = null; |
||
| 20 | public $errorWarning = []; |
||
| 21 | public $featured_article = false; |
||
| 22 | public $citationSummary = []; |
||
| 23 | public $importantSummary = []; |
||
| 24 | public $nbRows = 0; |
||
| 25 | |||
| 26 | // Minor flag on edit |
||
| 27 | public $minorFlag = true; |
||
| 28 | // WikiBotConfig flag on edit |
||
| 29 | public $botFlag = true; |
||
| 30 | public $citationVersion = ''; |
||
| 31 | public $luckyState = false; |
||
| 32 | |||
| 33 | public function __construct(string $title) |
||
| 36 | } |
||
| 37 | |||
| 38 | public function getTitle(): ?string |
||
| 41 | } |
||
| 42 | } |