document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. /**
  2.  * Defines application features from the specific context.
  3.  */
  4.     class FeatureContext implements Context, SnippetAcceptingContext, KernelAwareContext
  5.     {
  6.         protected $kernel;
  7.  
  8.         /**
  9.          * Initializes context.
  10.          *
  11.          * Every scenario gets its own context instance.
  12.          * You can also pass arbitrary arguments to the
  13.          * context constructor through behat.yml.
  14.          */
  15.         public function __construct()
  16.         {
  17.         }
  18.  
  19.         /**
  20.          * Sets Kernel instance.
  21.          *
  22.          * @param KernelInterface $kernel
  23.          */
  24.         public function setKernel(KernelInterface $kernel)
  25.         {
  26.             $this->kernel = $kernel;
  27.         }
  28.  
  29.     }
');