This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
phpunit: | |
[exec] > php -d newrelic.enabled=off ****.com/vendor/bin/phpunit -c ****.com/phpunit-prod.xml --log-junit build/logs/phpunit-report.xml | |
[exec] PHPUnit 9.1.4 by Sebastian Bergmann and contributors. | |
[exec] | |
[exec] ............................................................... 63 / 310 ( 20%) | |
[exec] ............................................................... 126 / 310 ( 40%) | |
[exec] ............................................................... 189 / 310 ( 60%) | |
[exec] ................................I.....EEEEEEEEEEEEEEEEE.E.EEEEE 252 / 310 ( 81%) | |
[exec] EEEEEEEE.EEEEEEEEE.EEEEEEEEEEEEEEEE.....EEEEEEFFEEFFEE.... 310 / 310 (100%) | |
[exec] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function (w, timeout) { | |
setTimeout(function () { | |
var url = w.location.toString(); | |
if (w.history && w.history.replaceState && url.indexOf('_fid=') !== -1) { | |
w.history.replaceState({}, null, /[?&]_fid=[^&]+$/.test(url) | |
? url.replace(/[?&]_fid=[^&]+/, '') | |
: url.replace(/([?&])_fid=[^&]+&/, '$1') | |
); | |
} | |
}, timeout || 2000); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Nette\Caching; | |
use Nette; | |
/** | |
* Implements the cache for a application. | |
* |