11 lines
309 B
PHP
11 lines
309 B
PHP
|
<?php
|
||
|
namespace Contabilidad\Common\Concept;
|
||
|
|
||
|
use Contabilidad\Common\Alias\DocumentHandler as HandlerInterface;
|
||
|
|
||
|
abstract class DocumentHandler implements HandlerInterface {
|
||
|
protected string $folder;
|
||
|
public function __construct(string $source_folder) {
|
||
|
$this->folder = $source_folder;
|
||
|
}
|
||
|
}
|