for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Canvas\Models;
class FileSystemSettings extends AbstractModel
{
/**
*
* @var integer
*/
public $filesystem_id;
* @var string
public $name;
public $value;
public $created_at;
public $updated_at;
public $is_deleted;
* Initialize method for model.
public function initialize()
$this->setSource('filesystem_settings');
$this->belongsTo(
'filesystem_id',
'Canvas\Models\Filesystem',
'id',
['alias' => 'file']
);
}
* Returns table name mapped in the model.
* @return string
public function getSource() : string
return 'filesystem_settings';