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 namespace Illuminate\Database\Schema; class MariaDbSchemaState extends MySqlSchema..
Decoded Output download
<?php
namespace Illuminate\Database\Schema;
class MariaDbSchemaState extends MySqlSchemaState
{
/**
* Get the base dump command arguments for MariaDB as a string.
*
* @return string
*/
protected function baseDumpCommand()
{
$command = 'mysqldump '.$this->connectionString().' --no-tablespaces --skip-add-locks --skip-comments --skip-set-charset --tz-utc --column-statistics=0';
return $command.' "${:LARAVEL_LOAD_DATABASE}"';
}
}
?>
Did this file decode correctly?
Original Code
<?php
namespace Illuminate\Database\Schema;
class MariaDbSchemaState extends MySqlSchemaState
{
/**
* Get the base dump command arguments for MariaDB as a string.
*
* @return string
*/
protected function baseDumpCommand()
{
$command = 'mysqldump '.$this->connectionString().' --no-tablespaces --skip-add-locks --skip-comments --skip-set-charset --tz-utc --column-statistics=0';
return $command.' "${:LARAVEL_LOAD_DATABASE}"';
}
}
Function Calls
None |
Stats
MD5 | caee4975371a2336eeaa8da0c35cef03 |
Eval Count | 0 |
Decode Time | 101 ms |