OXIESEC PANEL
- Current Dir:
/
/
var
/
www
/
cream
/
Xpress
/
vendor
/
phpmailer
/
phpmailer
/
test
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
DebugLogTestListener.php
1.07 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
Fixtures
-
03/05/2025 10:56:55 AM
rwxr-xr-x
📁
Language
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
OAuth
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
PHPMailer
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📁
POP3
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
PreSendTestCase.php
1.41 KB
05/19/2025 10:07:16 AM
rw-r--r--
📁
Security
-
05/19/2025 10:07:16 AM
rwxr-xr-x
📄
SendTestCase.php
4.34 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
TestCase.php
12.41 KB
05/19/2025 10:07:16 AM
rw-r--r--
📄
fakefunctions.php
243 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
fakepopserver.sh
3.09 KB
03/05/2025 10:53:45 AM
rw-r--r--
📄
fakesendmail.sh
518 bytes
03/05/2025 10:53:45 AM
rw-r--r--
📄
runfakepopserver.sh
392 bytes
03/05/2025 10:53:45 AM
rw-r--r--
📄
testbootstrap-dist.php
248 bytes
05/19/2025 10:07:16 AM
rw-r--r--
📄
validators.php
181 bytes
05/19/2025 10:07:16 AM
rw-r--r--
Editing: DebugLogTestListener.php
Close
<?php /** * PHPMailer - language file tests. * * PHP version 5.5. * * @author Marcus Bointon <phpmailer@synchromedia.co.uk> * @author Andy Prevost * @author Juliette Reinders Folmer * @copyright 2010 - 2020 Marcus Bointon * @copyright 2004 - 2009 Andy Prevost * @copyright 2020 Juliette Reinders Folmer * @license http://www.gnu.org/copyleft/lesser.html GNU Lesser General Public License */ namespace PHPMailer\Test; use PHPUnit\Framework\TestListener; use Yoast\PHPUnitPolyfills\TestListeners\TestListenerDefaultImplementation; class DebugLogTestListener implements TestListener { use TestListenerDefaultImplementation; private static $debugLog = ''; public function add_error($test, $e, $time) { echo self::$debugLog; } public function add_failure($test, $e, $time) { echo self::$debugLog; } public function start_test($test) { self::$debugLog = ''; } public static function debugLog($str) { self::$debugLog .= $str . PHP_EOL; } }