/**
  * Creates an instance.
  *
  * @param array|null $freeValuesKeys
  */
 public function __construct($freeValuesKeys = null)
 {
     parent::__construct();
     if ($freeValuesKeys) {
         $this->setFreeValuesKeys($freeValuesKeys);
     }
 }
 public function __construct()
 {
     parent::__construct();
     $this->init();
 }
 public function __construct(Repository\Organization $organizationRepository)
 {
     parent::__construct();
     $this->organizationRepository = $organizationRepository;
 }
 /**
  * @param ServiceLocatorInterface $serviceManager
  */
 public function __construct(ServiceLocatorInterface $serviceManager)
 {
     parent::__construct();
     $this->serviceManager = $serviceManager;
     $this->init();
 }