/var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Adapter
NameSizeModeActions
AbstractAdapter.php103580644editdlrm
AdapterFactory.php42950644editdlrm
AdapterInterface.php133330644editdlrm
AdapterWrapper.php93770644editdlrm
DirectActionInterface.php41240644editdlrm
MysqlAdapter.php445580644editdlrm
PdoAdapter.php293510644editdlrm
PostgresAdapter.php459150644editdlrm
ProxyAdapter.php36000644editdlrm
SQLiteAdapter.php517860644editdlrm
SqlServerAdapter.php417560644editdlrm
TablePrefixAdapter.php150790644editdlrm
TimedOutputAdapter.php123690644editdlrm
UnsupportedColumnTypeException.php3930644editdlrm
WrapperInterface.php9590644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/robmorgan/phinx/src/Phinx/Db/Adapter/TimedOutputAdapter.php (12369B)
getAdapter()->getAdapterType(); } /** * Start timing a command. * * @return callable A function that is to be called when the command finishes */ public function startCommandTimer() { $started = microtime(true); return function () use ($started) { $end = microtime(true); if (OutputInterface::VERBOSITY_VERBOSE <= $this->getOutput()->getVerbosity()) { $this->getOutput()->writeln(' -> ' . sprintf('%.4fs', $end - $started)); } }; } /** * Write a Phinx command to the output. * * @param string $command Command Name * @param array $args Command Args * * @return void */ public function writeCommand($command, $args = []) { if (OutputInterface::VERBOSITY_VERBOSE > $this->getOutput()->getVerbosity()) { return; } if (count($args)) { $outArr = []; foreach ($args as $arg) { if (is_array($arg)) { $arg = array_map( function ($value) { return '\'' . $value . '\''; }, $arg ); $outArr[] = '[' . implode(', ', $arg) . ']'; continue; } $outArr[] = '\'' . $arg . '\''; } $this->getOutput()->writeln(' -- ' . $command . '(' . implode(', ', $outArr) . ')'); return; } $this->getOutput()->writeln(' -- ' . $command); } /** * @inheritDoc */ public function insert(Table $table, $row) { $end = $this->startCommandTimer(); $this->writeCommand('insert', [$table->getName()]); parent::insert($table, $row); $end(); } /** * @inheritDoc */ public function bulkinsert(Table $table, $rows) { $end = $this->startCommandTimer(); $this->writeCommand('bulkinsert', [$table->getName()]); parent::bulkinsert($table, $rows); $end(); } /** * @inheritDoc */ public function createTable(Table $table, array $columns = [], array $indexes = []) { $end = $this->startCommandTimer(); $this->writeCommand('createTable', [$table->getName()]); parent::createTable($table, $columns, $indexes); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function changePrimaryKey(Table $table, $newColumns) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('changePrimaryKey', [$table->getName()]); $adapter->changePrimaryKey($table, $newColumns); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function changeComment(Table $table, $newComment) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('changeComment', [$table->getName()]); $adapter->changeComment($table, $newComment); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function renameTable($tableName, $newTableName) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('renameTable', [$tableName, $newTableName]); $adapter->renameTable($tableName, $newTableName); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function dropTable($tableName) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('dropTable', [$tableName]); $adapter->dropTable($tableName); $end(); } /** * @inheritDoc */ public function truncateTable($tableName) { $end = $this->startCommandTimer(); $this->writeCommand('truncateTable', [$tableName]); parent::truncateTable($tableName); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function addColumn(Table $table, Column $column) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand( 'addColumn', [ $table->getName(), $column->getName(), $column->getType(), ] ); $adapter->addColumn($table, $column); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function renameColumn($tableName, $columnName, $newColumnName) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('renameColumn', [$tableName, $columnName, $newColumnName]); $adapter->renameColumn($tableName, $columnName, $newColumnName); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function changeColumn($tableName, $columnName, Column $newColumn) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('changeColumn', [$tableName, $columnName, $newColumn->getType()]); $adapter->changeColumn($tableName, $columnName, $newColumn); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function dropColumn($tableName, $columnName) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('dropColumn', [$tableName, $columnName]); $adapter->dropColumn($tableName, $columnName); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function addIndex(Table $table, Index $index) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('addIndex', [$table->getName(), $index->getColumns()]); $adapter->addIndex($table, $index); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function dropIndex($tableName, $columns) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('dropIndex', [$tableName, $columns]); $adapter->dropIndex($tableName, $columns); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function dropIndexByName($tableName, $indexName) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('dropIndexByName', [$tableName, $indexName]); $adapter->dropIndexByName($tableName, $indexName); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function addForeignKey(Table $table, ForeignKey $foreignKey) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('addForeignKey', [$table->getName(), $foreignKey->getColumns()]); $adapter->addForeignKey($table, $foreignKey); $end(); } /** * {@inheritDoc} * * @throws \BadMethodCallException * * @return void */ public function dropForeignKey($tableName, $columns, $constraint = null) { $adapter = $this->getAdapter(); if (!$adapter instanceof DirectActionInterface) { throw new BadMethodCallException('The adapter needs to implement DirectActionInterface'); } $end = $this->startCommandTimer(); $this->writeCommand('dropForeignKey', [$tableName, $columns]); $adapter->dropForeignKey($tableName, $columns, $constraint); $end(); } /** * @inheritDoc */ public function createDatabase($name, $options = []) { $end = $this->startCommandTimer(); $this->writeCommand('createDatabase', [$name]); parent::createDatabase($name, $options); $end(); } /** * @inheritDoc */ public function dropDatabase($name) { $end = $this->startCommandTimer(); $this->writeCommand('dropDatabase', [$name]); parent::dropDatabase($name); $end(); } /** * @inheritDoc */ public function createSchema($name = 'public') { $end = $this->startCommandTimer(); $this->writeCommand('createSchema', [$name]); parent::createSchema($name); $end(); } /** * @inheritDoc */ public function dropSchema($name) { $end = $this->startCommandTimer(); $this->writeCommand('dropSchema', [$name]); parent::dropSchema($name); $end(); } /** * @inheritDoc */ public function executeActions(Table $table, array $actions) { $end = $this->startCommandTimer(); $this->writeCommand(sprintf('Altering table %s', $table->getName())); parent::executeActions($table, $actions); $end(); } }