/**
  * @return \Spryker\Yves\Library\Session\TransferSession
  */
 protected function getTransferSession()
 {
     return $this->app->getTransferSession();
 }
 /**
  * @return void
  */
 protected function provideFormTypeExtension()
 {
     $this->app['form.type.extensions'] = $this->app->share(function () {
         return [new NoValidateTypeExtension()];
     });
 }