1: <?php
 2: 
 3: namespace Deimos\Flow;
 4: 
 5: class Block
 6: {
 7:     use Traits\Block;
 8: 
 9:     /**
10:      * Block constructor.
11:      *
12:      * @param Configure $configure
13:      */
14:     public function __construct(Configure $configure)
15:     {
16:         $this->configure = $configure;
17:     }
18: }