19 lines
421 B
PHP
19 lines
421 B
PHP
<?php
|
|
declare(strict_types = 1);
|
|
|
|
/*
|
|
* This file is part of the package t3g/blog.
|
|
*
|
|
* For the full copyright and license information, please read the
|
|
* LICENSE file that was distributed with this source code.
|
|
*/
|
|
|
|
return [
|
|
\Evoweb\EwBloggy\Domain\Model\Post::class => [
|
|
'tableName' => 'pages',
|
|
],
|
|
\Evoweb\EwBloggy\Domain\Model\Category::class => [
|
|
'tableName' => 'sys_category',
|
|
],
|
|
];
|