part of the way there towards grouping need to deal with OR value

This commit is contained in:
Robbt 2019-01-20 02:12:21 +00:00
parent 1e7a8dce8c
commit 2b057472ca
13 changed files with 166 additions and 44 deletions

View file

@ -75,7 +75,7 @@ abstract class BaseCcBlock extends BaseObject implements Persistent
/**
* The value for the type field.
* Note: this column has a database default value of: 'dynamic'
* Note: this column has a database default value of: 'static'
* @var string
*/
protected $type;
@ -151,7 +151,7 @@ abstract class BaseCcBlock extends BaseObject implements Persistent
{
$this->name = '';
$this->length = '00:00:00';
$this->type = 'dynamic';
$this->type = 'static';
}
/**
@ -494,7 +494,7 @@ abstract class BaseCcBlock extends BaseObject implements Persistent
return false;
}
if ($this->type !== 'dynamic') {
if ($this->type !== 'static') {
return false;
}