#2138 Remove unused code

This commit is contained in:
Diatrex 2021-03-29 10:55:45 +03:00
parent 916707a025
commit 0cc8a5d78f
16 changed files with 135 additions and 0 deletions

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Adress;
use Anomaly\Streams\Platform\Entry\EntryCollection;
class AdressCollection extends EntryCollection
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Adress;
use Anomaly\Streams\Platform\Entry\EntryCriteria;
class AdressCriteria extends EntryCriteria
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Adress;
use Anomaly\Streams\Platform\Entry\EntryObserver;
class AdressObserver extends EntryObserver
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Adress;
use Anomaly\Streams\Platform\Entry\EntryPresenter;
class AdressPresenter extends EntryPresenter
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Adress;
use Anomaly\Streams\Platform\Entry\EntryRouter;
class AdressRouter extends EntryRouter
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Education;
use Anomaly\Streams\Platform\Entry\EntryCollection;
class EducationCollection extends EntryCollection
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Education;
use Anomaly\Streams\Platform\Entry\EntryCriteria;
class EducationCriteria extends EntryCriteria
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Education;
use Anomaly\Streams\Platform\Entry\EntryObserver;
class EducationObserver extends EntryObserver
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Education;
use Anomaly\Streams\Platform\Entry\EntryPresenter;
class EducationPresenter extends EntryPresenter
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\Education;
use Anomaly\Streams\Platform\Entry\EntryRouter;
class EducationRouter extends EntryRouter
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Entry\EntryCollection;
class EducationPartCollection extends EntryCollection
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Entry\EntryCriteria;
class EducationPartCriteria extends EntryCriteria
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Entry\EntryObserver;
class EducationPartObserver extends EntryObserver
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Entry\EntryPresenter;
class EducationPartPresenter extends EntryPresenter
{
}

View File

@ -0,0 +1,8 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Entry\EntryRouter;
class EducationPartRouter extends EntryRouter
{
}

View File

@ -0,0 +1,15 @@
<?php namespace Visiosoft\ProfileModule\EducationPart;
use Anomaly\Streams\Platform\Database\Seeder\Seeder;
class EducationPartSeeder extends Seeder
{
/**
* Run the seeder.
*/
public function run()
{
//
}
}