20 lines
371 B
PHP
20 lines
371 B
PHP
<?php
|
|
/**
|
|
* @link https://www.yiiframework.com/
|
|
* @copyright Copyright (c) 2008 Yii Software LLC
|
|
* @license https://www.yiiframework.com/license/
|
|
*/
|
|
|
|
namespace yii\db\sqlite\conditions;
|
|
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
class LikeConditionBuilder extends \yii\db\conditions\LikeConditionBuilder
|
|
{
|
|
/**
|
|
* {@inheritdoc}
|
|
*/
|
|
protected $escapeCharacter = '\\';
|
|
}
|