for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace App\Models;
use Sofa\Eloquence\Metable\InvalidMutatorException;
/**
* Class EmulatorSettings
* @package App\Models
*/
class EmulatorSettings extends ChocolateyModel
{
* Disable Timestamps
*
* @var bool
public $timestamps = false;
* The table associated with the model.
* @var string
protected $table = 'emulator_settings';
* Primary Key of the Table
protected $primaryKey = 'id';
* Store Function
public function store()
throw new InvalidMutatorException("Currently Chocolatey/Espreso doesn't support store Emulator Settings by CMS.");
}