t('Checkcommand Argument Command Id'), 'argument_key' => t('Checkcommand Argument Key'), 'environment_id' => t('Checkcommand Argument Environment Id'), 'properties_checksum' => t('Checkcommand Argument Properties Checksum'), 'argument_value' => t('Checkcommand Argument Value'), 'argument_order' => t('Checkcommand Argument Order'), 'description' => t('Checkcommand Argument Description'), 'argument_key_override' => t('Checkcommand Argument Key Override'), 'repeat_key' => t('Checkcommand Argument Repeat Key'), 'required' => t('Checkcommand Argument Required'), 'set_if' => t('Checkcommand Argument Set If'), 'skip_key' => t('Checkcommand Argument Skip Key') ]; } public function createRelations(Relations $relations) { $relations->belongsTo('environment', Environment::class); $relations->belongsTo('checkcommand', CheckCommand::class) ->setCandidateKey('command_id'); } }