wiki.techinc.nl/includes/libs/rdbms/field/SQLiteField.php
Jakub Vrana 48d894aefb Fix regular expression
Found by PHPStan.

Change-Id: I95813b0db9a3d6ca8c3894e5ccba00a9dc84b336
2018-12-03 18:49:23 +01:00

42 lines
724 B
PHP

<?php
namespace Wikimedia\Rdbms;
class SQLiteField implements Field {
private $info, $tableName;
function __construct( $info, $tableName ) {
$this->info = $info;
$this->tableName = $tableName;
}
function name() {
return $this->info->name;
}
function tableName() {
return $this->tableName;
}
function defaultValue() {
if ( is_string( $this->info->dflt_value ) ) {
// Typically quoted
if ( preg_match( '/^\'(.*)\'$/', $this->info->dflt_value, $matches ) ) {
return str_replace( "''", "'", $matches[1] );
}
}
return $this->info->dflt_value;
}
/**
* @return bool
*/
function isNullable() {
return !$this->info->notnull;
}
function type() {
return $this->info->type;
}
}