🤩 File Manager - Mr.X
PHP:
8.3.33
Server:
Apache
OS:
Linux 5.14.0-611.49.1.el9_7.x86_64
User:
websparkit
Navigate
Upload:
Upload
New File
New Folder
Editing:UniqueConstraintViolationException.php
<?php namespace Illuminate\Database; class UniqueConstraintViolationException extends QueryException { /** * The unique index which prevented the query. * * @var string|null */ public ?string $index = null; /** * The columns which caused the violation. * * @var list<string> */ public array $columns = []; /** * Set the unique index which caused the violation. * * @param string|null $index * @return $this */ public function setIndex(?string $index): self { $this->index = $index; return $this; } /** * Set the columns that caused the violation. * * @param list<string> $columns * @return $this */ public function setColumns(array $columns): self { $this->columns = $columns; return $this; } }
Save Changes
Cancel
Create New File
Create New Folder