src/Flow/Directives/ExtendsDirective.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Bavix\Flow\Directives;

use Bavix\Flow\Directive;

class ExtendsDirective extends Directive
{

    public function render(): string
    {
        return '<?php $this->ext->blocks()->extends($this->flow->path(' .
            $this->data['path']['code'] . '), __FILE__)?>';
    }

}