Migrate backend to Porto architecture and fix minor bugs
- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Ship\Broadcasting;
|
||||
|
||||
use App\Ship\Abstracts\Broadcasting\Channel as AbstractsChannel;
|
||||
|
||||
class Channel extends AbstractsChannel
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Ship\Broadcasting;
|
||||
|
||||
use App\Ship\Abstracts\Broadcasting\PresenceChannel as AbstractsPresenceChannel;
|
||||
|
||||
class PresenceChannel extends AbstractsPresenceChannel
|
||||
{
|
||||
|
||||
}
|
||||
@@ -0,0 +1,10 @@
|
||||
<?php
|
||||
|
||||
namespace App\Ship\Broadcasting;
|
||||
|
||||
use App\Ship\Abstracts\Broadcasting\PrivateChannel as AbstractsPrivateChannel;
|
||||
|
||||
class PrivateChannel extends AbstractsPrivateChannel
|
||||
{
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user