1
0
Fork 0
mirror of https://github.com/archtechx/tenancy.git synced 2025-12-13 00:14:04 +00:00

Apply fixes from StyleCI

This commit is contained in:
stancl 2020-05-22 09:01:31 +00:00 committed by StyleCI Bot
parent 1798ca9c85
commit 6955512a6b
133 changed files with 379 additions and 203 deletions

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class BootstrappingTenancy extends Contracts\TenancyEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events\Contracts;
use Illuminate\Queue\SerializesModels;

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events\Contracts;
use Stancl\Tenancy\Tenancy;
@ -13,4 +15,4 @@ abstract class TenancyEvent
{
$this->tenancy = $tenancy;
}
}
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events\Contracts;
use Illuminate\Queue\SerializesModels;

View file

@ -1,6 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class CreatingDatabase extends Contracts\TenantEvent
{}
{
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class CreatingDomain extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class CreatingTenant extends Contracts\TenantEvent

View file

@ -1,7 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DatabaseCreated extends Contracts\TenantEvent
{
}
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DatabaseDeleted extends Contracts\TenantEvent

View file

@ -1,6 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DatabaseMigrated extends Contracts\TenantEvent
{}
{
}

View file

@ -1,6 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DatabaseRolledBack extends Contracts\TenantEvent
{}
{
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DatabaseSeeded extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DeletingDomain extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DeletingTenant extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DomainCreated extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DomainDeleted extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DomainSaved extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class DomainUpdated extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class EndingTenancy extends Contracts\TenancyEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class InitializingTenancy extends Contracts\TenancyEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class MigratingDatabase extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class RevertedToCentralContext extends Contracts\TenancyEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class RevertingToCentralContext extends Contracts\TenancyEvent

View file

@ -1,6 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class SavedDomain extends Contracts\DomainEvent
{}
{
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class SavedTenant extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class SavingDomain extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class SavingTenant extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class SeedingDatabase extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
use Stancl\Tenancy\Contracts\Syncable;

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
use Illuminate\Database\Eloquent\Model;

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenancyBootstrapped extends Contracts\TenancyEvent

View file

@ -1,7 +1,9 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenancyEnded extends Contracts\TenancyEvent
{
}
}

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenancyInitialized extends Contracts\TenancyEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenantCreated extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenantDeleted extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenantSaved extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class TenantUpdated extends Contracts\TenantEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class UpdatingDomain extends Contracts\DomainEvent

View file

@ -1,5 +1,7 @@
<?php
declare(strict_types=1);
namespace Stancl\Tenancy\Events;
class UpdatingTenant extends Contracts\TenantEvent