Pipeline and codestyle fixes

Signed-off-by: Raul <raul@nextcloud.com>
This commit is contained in:
Raul
2022-05-05 13:50:16 +02:00
parent 9369a697e3
commit 9fca104059
5 changed files with 35 additions and 27 deletions

View File

@@ -24,11 +24,10 @@ namespace OCA\Deck\Model;
use OCA\Deck\Db\Board;
class BoardSummary extends Board
{
class BoardSummary extends Board {
private Board $board;
public function __construct(Board $board = null) {
public function __construct(Board $board) {
parent::__construct();
$this->board = $board;
}
@@ -40,7 +39,7 @@ class BoardSummary extends Board
];
}
protected function getter($name) {
return $this->board->getter($name);
public function __call($name, $arguments) {
return $this->board->__call($name, $arguments);
}
}