add: boilerplate

pull/9540/head
Luciano Righetti 2024-02-06 16:23:15 +01:00
parent 50c010d113
commit bbe1e6e571
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
<?php
namespace App\Model\Table;
use App\Model\Table\AppTable;
class MispObjects extends AppTable
{
public function initialize(array $config): void
{
parent::initialize($config);
$this->setTable('objects');
}
}