devel_wizard-2.x-dev/tests/fixtures/templates/php/devel_wizard.php.class.php.yml
tests/fixtures/templates/php/devel_wizard.php.class.php.yml
empty-body:
expected: |+
<?php
declare(strict_types=1);
namespace My\Lib01;
use Me\Lib01\MyParent;
use Me\Lib01\MyInter01;
use Me\Lib01\MyInter02;
use Me\Lib01\MyInter03;
abstract class MyIdentifier extends MyParent implements MyInter01, MyInter02, MyInter03 {
}
context:
namespace: 'My\Lib01'
useStatements:
Me\Lib01\MyParent: ''
Me\Lib01\MyInter01: ''
Me\Lib01\MyInter02: ''
Me\Lib01\MyInter03: ''
modifier: 'abstract'
name: 'MyIdentifier'
extends: 'MyParent'
implements:
- 'MyInter01'
- 'MyInter02'
- 'MyInter03'
