Find this useful? Enter your email to receive occasional updates for securing PHP code.
Signing you up...
Thank you for signing up!
PHP Decode
<?php declare(strict_types=1); use Migrations\AbstractMigration; class V380AlterNameLeng..
Decoded Output download
<?php
declare(strict_types=1);
use Migrations\AbstractMigration;
class V380AlterNameLengthOnFoldersHistory extends AbstractMigration
{
/**
* Change Method.
*
* More information on this method is available here:
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
* @return void
*/
public function change()
{
$table = $this->table('folders_history');
$table->changeColumn('name', 'string', [
'limit' => 256,
]);
$table->update();
}
}
?>
Did this file decode correctly?
Original Code
<?php
declare(strict_types=1);
use Migrations\AbstractMigration;
class V380AlterNameLengthOnFoldersHistory extends AbstractMigration
{
/**
* Change Method.
*
* More information on this method is available here:
* https://book.cakephp.org/phinx/0/en/migrations.html#the-change-method
* @return void
*/
public function change()
{
$table = $this->table('folders_history');
$table->changeColumn('name', 'string', [
'limit' => 256,
]);
$table->update();
}
}
Function Calls
None |
Stats
MD5 | 958b754df5ff94f2651c368d0f96149b |
Eval Count | 0 |
Decode Time | 89 ms |