src/Zet/V8Bundle/ZetV8Bundle.php line 14

Open in your IDE?
  1. <?php
  2. /**
  3.  * Created by PhpStorm.
  4.  * User: alexandr
  5.  * Date: 2019-04-07
  6.  * Time: 11:44
  7.  */
  8. namespace App\Zet\V8Bundle;
  9. use App\Zet\V8Bundle\DependencyInjection\ZetV8Extension;
  10. use Symfony\Component\HttpKernel\Bundle\Bundle;
  11. class ZetV8Bundle extends Bundle
  12. {
  13.     public function getContainerExtension(){
  14.         return new ZetV8Extension();
  15.     }
  16. }