work in progress

This commit is contained in:
Robbt 2018-12-11 21:14:35 -05:00
parent efec7af21c
commit 1b48f91dbd
3 changed files with 10 additions and 9 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: 'static'
* Note: this column has a database default value of: 'dynamic'
* @var string
*/
protected $type;
@ -151,7 +151,7 @@ abstract class BaseCcBlock extends BaseObject implements Persistent
{
$this->name = '';
$this->length = '00:00:00';
$this->type = 'static';
$this->type = 'dynamic';
}
/**
@ -494,7 +494,7 @@ abstract class BaseCcBlock extends BaseObject implements Persistent
return false;
}
if ($this->type !== 'static') {
if ($this->type !== 'dynamic') {
return false;
}