Remove unused code

This commit is contained in:
Matthew Ross 2016-05-13 16:08:26 -04:00
parent eff5e62121
commit 297a02d7e1

View File

@ -8,13 +8,9 @@ class Board extends BaseModel {
public $auto_actions = [];
public $users = [];
public function __construct($container, $id = 0, $internal = false) {
public function __construct($container, $id = 0) {
parent::__construct('board', $id, $container);
if ($internal) {
return;
}
$this->loadFromBean($this->bean);
}