11 lines
104 B
PHP
11 lines
104 B
PHP
<?php
|
|
|
|
namespace App\Services;
|
|
|
|
abstract class Common
|
|
{
|
|
public function __construct()
|
|
{
|
|
}
|
|
}
|