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 | |
function usage($programeName) { | |
echo <<<EOT | |
Usage: | |
{$programeName} TRACE_FILE | |
EOT; | |
} |
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 | |
/** | |
* Run in folder where to scan: | |
* php -f /path/to/duplicated_functions.php | |
* | |
* For more detailed debug information: | |
* DEBUG=1 php -f /path/to/duplicated_functions.php | |
*/ | |
declare (strict_types=1); |
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 | |
declare(strict_types=1); | |
/** | |
* Crache du XML, yay. | |
*/ | |
class XmlRequestWriter | |
{ | |
/** |
OlderNewer