16 lines
218 B
PHP
16 lines
218 B
PHP
<?php
|
|
|
|
namespace App\Cells;
|
|
|
|
use App\Services\CommonService;
|
|
|
|
abstract class CommonCell
|
|
{
|
|
protected $service = null;
|
|
|
|
protected function __construct(CommonService $service)
|
|
{
|
|
$this->service = $service;
|
|
}
|
|
}
|