for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the Sylius package.
*
* (c) Paweł Jędrzejewski
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Sylius\Bundle\FixturesBundle\Listener;
use Sylius\Bundle\FixturesBundle\Fixture\FixtureInterface;
use Sylius\Bundle\FixturesBundle\Suite\SuiteInterface;
/**
* @author Kamil Kokot <[email protected]>
final class FixtureEvent
{
* @var SuiteInterface
private $suite;
* @var FixtureInterface
private $fixture;
* @var array
private $fixtureOptions;
* @param SuiteInterface $suite
* @param FixtureInterface $fixture
* @param array $fixtureOptions
public function __construct(SuiteInterface $suite, FixtureInterface $fixture, array $fixtureOptions)
$this->suite = $suite;
$this->fixture = $fixture;
$this->fixtureOptions = $fixtureOptions;
}
* @return SuiteInterface
public function suite()
return $this->suite;
* @return FixtureInterface
public function fixture()
return $this->fixture;
* @return array
public function fixtureOptions()
return $this->fixtureOptions;