15 lines
216 B
PHP
15 lines
216 B
PHP
<?php
|
|
|
|
namespace App\Libraries\Mangboard;
|
|
|
|
use App\Libraries\CommonLibrary;
|
|
|
|
abstract class MangboardLibrary extends CommonLibrary
|
|
{
|
|
|
|
protected function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
}
|