getMariaDbVersionMatch example



  public function driver() {
    return 'mysql';
  }

  /** * {@inheritdoc} */
  public function version() {
    if ($this->isMariaDb()) {
      return $this->getMariaDbVersionMatch();
    }

    return $this->getServerVersion();
  }

  /** * Determines whether the MySQL distribution is MariaDB or not. * * @return bool * Returns TRUE if the distribution is MariaDB, or FALSE if not. */
  
Home | Imprint | This part of the site doesn't use cookies.