diff --git a/Controller/BackendController.php b/Controller/BackendController.php
index d19ba8d..28e8f76 100755
--- a/Controller/BackendController.php
+++ b/Controller/BackendController.php
@@ -32,6 +32,7 @@ use phpOMS\Views\View;
* @license OMS License 1.0
* @link https://orange-management.org
* @since 1.0.0
+ * @codeCoverageIgnore
*/
final class BackendController extends Controller
{
diff --git a/Models/KanbanCard.php b/Models/KanbanCard.php
index 21470d8..e816891 100755
--- a/Models/KanbanCard.php
+++ b/Models/KanbanCard.php
@@ -401,7 +401,7 @@ class KanbanCard implements \JsonSerializable
public static function createFromTask(Task $task) : self
{
$card = new self();
- $card->setRef($task->getId());
+ $card->ref = $task->getId();
return $card;
}
diff --git a/Models/KanbanCardComment.php b/Models/KanbanCardComment.php
index 6ca9e75..a0691eb 100755
--- a/Models/KanbanCardComment.php
+++ b/Models/KanbanCardComment.php
@@ -78,7 +78,7 @@ class KanbanCardComment implements \JsonSerializable
/**
* Media.
*
- * @var Media[]
+ * @var \Modules\Media\Models\Media[]
* @since 1.0.0
*/
private array $media = [];
diff --git a/tests/phpunit_default.xml b/tests/phpunit_default.xml
index 0419dd8..722365c 100755
--- a/tests/phpunit_default.xml
+++ b/tests/phpunit_default.xml
@@ -20,6 +20,7 @@
../**/test*
../**/Theme*
../**/Admin/Routes*
+ ../**/Admin/Hooks*
../**/Admin/Install*
../Media/Files*