feat: rename module
Signed-off-by: Sebastian Krupinski <krupinski01@gmail.com>
This commit is contained in:
@@ -7,7 +7,7 @@ declare(strict_types=1);
|
||||
* SPDX-License-Identifier: AGPL-3.0-or-later
|
||||
*/
|
||||
|
||||
namespace KTXM\ChronoProviderLocal\Store\Personal;
|
||||
namespace KTXM\ProviderLocalChrono\Store\Personal;
|
||||
|
||||
use KTXC\Db\DataStore;
|
||||
use KTXF\Resource\Filter\Filter;
|
||||
@@ -17,16 +17,16 @@ use KTXF\Resource\Range\Range;
|
||||
use KTXF\Resource\Range\RangeType;
|
||||
use KTXF\Resource\Sort\Sort;
|
||||
use KTXF\Utile\UUID;
|
||||
use KTXM\ChronoProviderLocal\Providers\Personal\Collection;
|
||||
use KTXM\ChronoProviderLocal\Providers\Personal\Entity;
|
||||
use KTXM\ProviderLocalChrono\Providers\Personal\Collection;
|
||||
use KTXM\ProviderLocalChrono\Providers\Personal\Entity;
|
||||
|
||||
class Store {
|
||||
|
||||
protected string $_CollectionTable = 'chrono_provider_local_collection';
|
||||
protected string $_CollectionClass = 'KTXM\ChronoProviderLocal\Providers\Personal\Collection';
|
||||
protected string $_EntityTable = 'chrono_provider_local_entity';
|
||||
protected string $_EntityClass = 'KTXM\ChronoProviderLocal\Providers\Personal\Entity';
|
||||
protected string $_ChronicleTable = 'chrono_provider_local_chronicle';
|
||||
protected string $_CollectionTable = 'provider_local_chrono_collection';
|
||||
protected string $_CollectionClass = 'KTXM\ProviderLocalChrono\Providers\Personal\Collection';
|
||||
protected string $_EntityTable = 'provider_local_chrono_entity';
|
||||
protected string $_EntityClass = 'KTXM\ProviderLocalChrono\Providers\Personal\Entity';
|
||||
protected string $_ChronicleTable = 'provider_local_chrono_chronicle';
|
||||
|
||||
protected array $_CollectionFilterAttributeMap = [
|
||||
'id' => 'cid',
|
||||
|
||||
Reference in New Issue
Block a user