t('Checkcommand Id'), 'argument_key' => t('Checkcommand Argument Name'), 'environment_id' => t('Environment Id'), 'properties_checksum' => t('Checkcommand Argument Properties Checksum'), 'argument_value' => t('Checkcommand Argument Value'), 'argument_order' => t('Checkcommand Argument Position'), 'description' => t('Checkcommand Argument Description'), 'argument_key_override' => t('Checkcommand Argument Actual Name'), 'repeat_key' => t('Checkcommand Argument Repeated'), 'required' => t('Checkcommand Argument Required'), 'set_if' => t('Checkcommand Argument Condition'), 'skip_key' => t('Checkcommand Argument Without Name') ]; } public function createBehaviors(Behaviors $behaviors) { $behaviors->add(new Binary([ 'id', 'checkcommand_id', 'environment_id', 'properties_checksum' ])); } public function createRelations(Relations $relations) { $relations->belongsTo('environment', Environment::class); $relations->belongsTo('checkcommand', Checkcommand::class); } }