- Fully transitioned the backend to the Porto architectural pattern - Improved code organization and maintainability - Fixed minor bugs and inconsistencies
8 lines
123 B
PHP
8 lines
123 B
PHP
<?php
|
|
|
|
namespace App\Ship\Contracts;
|
|
|
|
interface SeoDescriptionInterface
|
|
{
|
|
public function getSeoDescription(): array;
|
|
} |