9 lines
107 B
PHP
9 lines
107 B
PHP
<?php
|
|
|
|
namespace App\Models;
|
|
|
|
interface ICompanyableChild
|
|
{
|
|
public function getCompanyableParents();
|
|
}
|