<?php
declare(strict_types=1);
/**
* CakePHP(tm) : Rapid Development Framework (https://cakephp.org)
* Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
*
* Licensed under The MIT License
* For full copyright and license information, please see the LICENSE.txt
* Redistributions of files must retain the above copyright notice.
*
* @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org)
* @link https://cakephp.org CakePHP(tm) Project
* @since 4.0.0
* @license https://opensource.org/licenses/mit-license.php MIT License
*/
namespace Cake\Database\Type;
use Cake\Database\DriverInterface;
use Cake\Database\TypeInterface;
use PDO;
/**
* Base type class.
*/
abstract class BaseType implements TypeInterface
{
/**
* Identifier name for this type
*
* @var string|null
*/
protected $_name;
/**
* Constructor
*
* @param string|null $name The name identifying this type
*/
public function __construct(?string $name = null)
{
$this->_name = $name;
}
/**
* @inheritDoc
*/
public function getName(): ?string
{
return $this->_name;
}
/**
* @inheritDoc
*/
public function getBaseType(): ?string
{
return $this->_name;
}
/**
* @inheritDoc
*/
public function toStatement($value, DriverInterface $driver)
{
if ($value === null) {
return PDO::PARAM_NULL;
}
return PDO::PARAM_STR;
}
/**
* @inheritDoc
*/
public function newId()
{
return null;
}
}