| 12345678910111213141516171819202122232425262728293031323334 |
- <?php
- /**
- * @link:http://www.gdqijianshi.com/
- * @copyright: Copyright (c) 2020 广东七件事集团
- * Created by PhpStorm
- * Author: zal
- * Date: 2020-04-01
- * Time: 21:49
- */
- namespace common\helpers\printer\config;
- abstract class BaseConfig
- {
- public function __construct($config = [])
- {
- foreach ($config as $name => $value) {
- if (property_exists($this, $name)) {
- $this->$name = $value;
- }
- }
- }
- /**
- * @param string $content
- * @return array
- * @throws \Exception
- */
- abstract public function print($content);
- }
|