📁
SKYSHELL MANAGER
PHP v8.1.34
Create
Create
Path:
root
/
home
/
terracebizon
/
public_html
/
wp-includes
/
js
/
tinymce
/
themes
/
Name
Size
Perm
Actions
📁
inlite
-
0755
🗑️
🏷️
🔒
📁
modern
-
0755
🗑️
🏷️
🔒
📄
config.php
6.83 KB
0444
🗑️
🏷️
⬇️
✏️
🔒
📄
error_log
12934.91 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: option_too_many_values.php
<?php /** * File containing the ezcConsoleOptionTooManyValuesException. * * @package ConsoleTools * @version 1.6.1 * @copyright Copyright (C) 2005-2010 eZ Systems AS. All rights reserved. * @license http://ez.no/licenses/new_bsd New BSD License */ /** * An option that expects only a single value was submitted with multiple values. * This exception can be caught using {@link ezcConsoleOptionException}. * * @package ConsoleTools * @version 1.6.1 */ class ezcConsoleOptionTooManyValuesException extends ezcConsoleOptionException { /** * Creates a new exception object. * * @param ezcConsoleOption $option The affected option. * @return void */ public function __construct( ezcConsoleOption $option ) { parent::__construct( "The option '{$option->long}' expects a single value, but multiple were submitted." ); } } ?>
Save