You are here

LockrDevSettings.php in Lockr 7.3

Namespace

Lockr

File

vendor/lockr/lockr/src/LockrDevSettings.php
View source
<?php

namespace Lockr;

class LockrDevSettings extends LockrSettings {

  /**
   * {@inheritdoc}
   */
  public function getOptions() {
    $options = parent::getOptions();
    $options['verify'] = false;
    return $options;
  }

}

// ex: ts=4 sts=4 sw=4 et:

Classes

Namesort descending Description
LockrDevSettings