Overview

Namespaces

  • Deliverist
    • Syncer
      • Bridges
      • Utils

Classes

  • Deliverist\Syncer\Bridges\DeploymentLogger
  • Deliverist\Syncer\Bridges\FtpDeployerFactory
  • Deliverist\Syncer\FtpSyncer
  • Deliverist\Syncer\Utils\EventsFactory

Interfaces

  • Deliverist\Syncer\ISyncer

Exceptions

  • Deliverist\Syncer\Exception
  • Deliverist\Syncer\StaticClassException
  • Overview
  • Namespace
  • Class
 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,
            ));
        }
    }
deliverist/syncer v0.5.0 API documentation API documentation generated by ApiGen