📁 File Manager Pro
v10.0.3 | PHP: 8.2.31
Server: LiteSpeed
2026-07-03 11:04:55
📂
/ (Root)
/
home
/
orkouolp
/
web
/
testing.orkobd
/
laravel
/
vendor
/
nette
/
schema
/
tests
📍 /home/orkouolp/web/testing.orkobd/laravel/vendor/nette/schema/tests
🔄 Refresh
✏️
Editing: bootstrap.php
Writable
<?php declare(strict_types=1); use Tester\Assert; // The Nette Tester command-line runner can be // invoked through the command: ../vendor/bin/tester . if (@!include __DIR__ . '/../vendor/autoload.php') { echo 'Install Nette Tester using `composer install`'; exit(1); } // configure environment Tester\Environment::setup(); Tester\Environment::setupFunctions(); date_default_timezone_set('Europe/Prague'); function checkValidationErrors(Closure $function, array $messages): Nette\Schema\ValidationException { $e = Assert::exception($function, Nette\Schema\ValidationException::class); Assert::same($messages, $e->getMessages()); Assert::same($messages[0], $e->getMessage()); return $e; }
💾 Save Changes
❌ Cancel