<?php namespace App\Komma\Kms\Core; abstract class AbstractAttributeDirector { abstract function __construct(AbstractAttributeBuilder $attributeBuilder); abstract function buildAttribute(); abstract function getAttribute(); }