1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30:
<?php
namespace Deliverist\Syncer\Utils;
use CzProject\Events\Events;
use Deliverist\Syncer\StaticClassException;
class EventsFactory
{
const AFTER_SYNC = 'after-sync';
public function __construct()
{
throw new StaticClassException('This is static class.');
}
/**
* @return Events
*/
public static function create()
{
return new Events(array(
self::AFTER_SYNC,
));
}
}