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
| #target illustrator | |
| function main() | |
| { | |
| var sourceDir, | |
| destDir, | |
| files, | |
| sourceDoc, | |
| sizes; |
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 AppBundle\DependencyInjection; | |
| use Symfony\Component\DependencyInjection\ContainerBuilder; | |
| use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface; | |
| use Symfony\Component\HttpKernel\DependencyInjection\Extension; | |
| class AppExtension extends Extension implements PrependExtensionInterface | |
| { |
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 | |
| class SymfonyCleanupStandard_Sniffs_Form_DeprecatedTypeOptionsSniff extends PHP_CodeSniffer_Standards_AbstractScopeSniff | |
| { | |
| /** | |
| * @inheritdoc | |
| */ | |
| public function __construct() | |
| { | |
| parent::__construct(array(T_CLASS), array(T_FUNCTION), false); |
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 AppBundle\Tests; | |
| use Symfony\Bundle\FrameworkBundle\Test\KernelTestCase; | |
| class ServiceAvailabilityFunctionalTest extends KernelTestCase | |
| { | |
| protected $serviceBlacklist = [ | |
| 'request', |
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); | |
| printf("Current PHP version: %s\n", phpversion()); | |
| $iterations = (int)($_SERVER['argv'][1] ?? 2000); | |
| printf("Bench iterations: %d\n", $iterations); | |
| $time = microtime(true); | |
| //$input = array_map('intval', str_split(str_repeat(trim(file_get_contents('input.txt')), 100))); |
OlderNewer