Linux unitednationsplay.com 3.10.0-1160.45.1.el7.x86_64 #1 SMP Wed Oct 13 17:20:51 UTC 2021 x86_64
nginx/1.20.1
Server IP : 188.130.139.92 & Your IP : 18.216.103.219
Domains :
Cant Read [ /etc/named.conf ]
User : web
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
home /
www /
wb /
vendor /
doctrine /
dbal /
src /
Schema /
Delete
Unzip
Name
Size
Permission
Date
Action
Exception
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
Visitor
[ DIR ]
drwxrwxr-x
2022-08-21 14:21
AbstractAsset.php
6
KB
-rw-rw-r--
2022-08-21 14:21
AbstractSchemaManager.php
47.55
KB
-rw-rw-r--
2022-08-21 14:21
Column.php
9.54
KB
-rw-rw-r--
2022-08-21 14:21
ColumnDiff.php
1.55
KB
-rw-rw-r--
2022-08-21 14:21
Comparator.php
21.4
KB
-rw-rw-r--
2022-08-21 14:21
Constraint.php
1.07
KB
-rw-rw-r--
2022-08-21 14:21
DB2SchemaManager.php
12.35
KB
-rw-rw-r--
2022-08-21 14:21
ForeignKeyConstraint.php
11.03
KB
-rw-rw-r--
2022-08-21 14:21
Identifier.php
666
B
-rw-rw-r--
2022-08-21 14:21
Index.php
8.53
KB
-rw-rw-r--
2022-08-21 14:21
MySQLSchemaManager.php
16.77
KB
-rw-rw-r--
2022-08-21 14:21
OracleSchemaManager.php
15.71
KB
-rw-rw-r--
2022-08-21 14:21
PostgreSQLSchemaManager.php
22.49
KB
-rw-rw-r--
2022-08-21 14:21
SQLServerSchemaManager.php
18.22
KB
-rw-rw-r--
2022-08-21 14:21
Schema.php
12.68
KB
-rw-rw-r--
2022-08-21 14:21
SchemaConfig.php
2.41
KB
-rw-rw-r--
2022-08-21 14:21
SchemaDiff.php
3.82
KB
-rw-rw-r--
2022-08-21 14:21
SchemaException.php
5.45
KB
-rw-rw-r--
2022-08-21 14:21
Sequence.php
3.32
KB
-rw-rw-r--
2022-08-21 14:21
SqliteSchemaManager.php
22.31
KB
-rw-rw-r--
2022-08-21 14:21
Table.php
26.31
KB
-rw-rw-r--
2022-08-21 14:21
TableDiff.php
3.11
KB
-rw-rw-r--
2022-08-21 14:21
UniqueConstraint.php
3.23
KB
-rw-rw-r--
2022-08-21 14:21
View.php
457
B
-rw-rw-r--
2022-08-21 14:21
Save
Rename
<?php namespace Doctrine\DBAL\Schema; use Doctrine\DBAL\Schema\Visitor\Visitor; use Doctrine\Deprecations\Deprecation; use function count; use function sprintf; /** * Sequence structure. */ class Sequence extends AbstractAsset { /** @var int */ protected $allocationSize = 1; /** @var int */ protected $initialValue = 1; /** @var int|null */ protected $cache; /** * @param string $name * @param int $allocationSize * @param int $initialValue * @param int|null $cache */ public function __construct($name, $allocationSize = 1, $initialValue = 1, $cache = null) { $this->_setName($name); $this->setAllocationSize($allocationSize); $this->setInitialValue($initialValue); $this->cache = $cache; } /** * @return int */ public function getAllocationSize() { return $this->allocationSize; } /** * @return int */ public function getInitialValue() { return $this->initialValue; } /** * @return int|null */ public function getCache() { return $this->cache; } /** * @param int $allocationSize * * @return Sequence */ public function setAllocationSize($allocationSize) { if ($allocationSize > 0) { $this->allocationSize = $allocationSize; } else { $this->allocationSize = 1; } return $this; } /** * @param int $initialValue * * @return Sequence */ public function setInitialValue($initialValue) { if ($initialValue > 0) { $this->initialValue = $initialValue; } else { $this->initialValue = 1; } return $this; } /** * @param int $cache * * @return Sequence */ public function setCache($cache) { $this->cache = $cache; return $this; } /** * Checks if this sequence is an autoincrement sequence for a given table. * * This is used inside the comparator to not report sequences as missing, * when the "from" schema implicitly creates the sequences. * * @return bool */ public function isAutoIncrementsFor(Table $table) { $primaryKey = $table->getPrimaryKey(); if ($primaryKey === null) { return false; } $pkColumns = $primaryKey->getColumns(); if (count($pkColumns) !== 1) { return false; } $column = $table->getColumn($pkColumns[0]); if (! $column->getAutoincrement()) { return false; } $sequenceName = $this->getShortestName($table->getNamespaceName()); $tableName = $table->getShortestName($table->getNamespaceName()); $tableSequenceName = sprintf('%s_%s_seq', $tableName, $column->getShortestName($table->getNamespaceName())); return $tableSequenceName === $sequenceName; } /** * @deprecated * * @return void */ public function visit(Visitor $visitor) { Deprecation::triggerIfCalledFromOutside( 'doctrine/dbal', 'https://github.com/doctrine/dbal/pull/5435', 'Sequence::visit() is deprecated.' ); $visitor->acceptSequence($this); } }