/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Table
NameSizeModeActions
Column.php162960644editdlrm
ForeignKey.php51310644editdlrm
Index.php31220644editdlrm
Table.php15170644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Table/ForeignKey.php (5131B)
columns = is_string($columns) ? [$columns] : $columns; return $this; } /** * Gets the foreign key columns. * * @return string[] */ public function getColumns() { return $this->columns; } /** * Sets the foreign key referenced table. * * @param \Phinx\Db\Table\Table $table The table this KEY is pointing to * * @return $this */ public function setReferencedTable(Table $table) { $this->referencedTable = $table; return $this; } /** * Gets the foreign key referenced table. * * @return \Phinx\Db\Table\Table */ public function getReferencedTable() { return $this->referencedTable; } /** * Sets the foreign key referenced columns. * * @param string[] $referencedColumns Referenced columns * * @return $this */ public function setReferencedColumns(array $referencedColumns) { $this->referencedColumns = $referencedColumns; return $this; } /** * Gets the foreign key referenced columns. * * @return string[] */ public function getReferencedColumns() { return $this->referencedColumns; } /** * Sets ON DELETE action for the foreign key. * * @param string $onDelete On Delete * * @return $this */ public function setOnDelete($onDelete) { $this->onDelete = $this->normalizeAction($onDelete); return $this; } /** * Gets ON DELETE action for the foreign key. * * @return string */ public function getOnDelete() { return $this->onDelete; } /** * Gets ON UPDATE action for the foreign key. * * @return string */ public function getOnUpdate() { return $this->onUpdate; } /** * Sets ON UPDATE action for the foreign key. * * @param string $onUpdate On Update * * @return $this */ public function setOnUpdate($onUpdate) { $this->onUpdate = $this->normalizeAction($onUpdate); return $this; } /** * Sets constraint for the foreign key. * * @param string $constraint Constraint * * @return $this */ public function setConstraint($constraint) { $this->constraint = $constraint; return $this; } /** * Gets constraint name for the foreign key. * * @return string|null */ public function getConstraint() { return $this->constraint; } /** * Utility method that maps an array of index options to this objects methods. * * @param array $options Options * * @throws \RuntimeException * * @return $this */ public function setOptions($options) { // Valid Options $validOptions = ['delete', 'update', 'constraint']; foreach ($options as $option => $value) { if (!in_array($option, $validOptions, true)) { throw new RuntimeException(sprintf('"%s" is not a valid foreign key option.', $option)); } // handle $options['delete'] as $options['update'] if ($option === 'delete') { $this->setOnDelete($value); } elseif ($option === 'update') { $this->setOnUpdate($value); } else { $method = 'set' . ucfirst($option); $this->$method($value); } } return $this; } /** * From passed value checks if it's correct and fixes if needed * * @param string $action Action * * @throws \InvalidArgumentException * * @return string */ protected function normalizeAction($action) { $constantName = 'static::' . str_replace(' ', '_', strtoupper(trim($action))); if (!defined($constantName)) { throw new InvalidArgumentException('Unknown action passed: ' . $action); } return constant($constantName); } }