@@ -17,7 +17,7 @@ discard block |
||
17 | 17 | class CompilerPass implements CompilerPassInterface |
18 | 18 | { |
19 | 19 | |
20 | - const CACHE_FILE = ROOT . 'cache/translation_token'; |
|
20 | + const CACHE_FILE = ROOT.'cache/translation_token'; |
|
21 | 21 | const TAG = 'middleware'; |
22 | 22 | |
23 | 23 | use FileCacheTrait; |
@@ -93,16 +93,16 @@ discard block |
||
93 | 93 | { |
94 | 94 | ksort($tokens); |
95 | 95 | |
96 | - $contentPhp = sprintf("return [\n %s\n];\n", implode(",\n ", array_map(function (Token $token) { |
|
96 | + $contentPhp = sprintf("return [\n %s\n];\n", implode(",\n ", array_map(function(Token $token) { |
|
97 | 97 | return sprintf('_("%s")', addslashes($token->token)); |
98 | 98 | }, $tokens))); |
99 | 99 | |
100 | - $contentHtml = sprintf("%s", implode("\n", array_map(function (Token $token) { |
|
100 | + $contentHtml = sprintf("%s", implode("\n", array_map(function(Token $token) { |
|
101 | 101 | return sprintf('<span translate>%s</span>', addslashes($token->token)); |
102 | 102 | }, $tokens))); |
103 | 103 | |
104 | 104 | $this->dumpCacheFile(self::CACHE_FILE, $contentPhp); |
105 | - file_put_contents(self::CACHE_FILE . '.html', $contentHtml); |
|
106 | - chmod(self::CACHE_FILE . '.html', 0777); |
|
105 | + file_put_contents(self::CACHE_FILE.'.html', $contentHtml); |
|
106 | + chmod(self::CACHE_FILE.'.html', 0777); |
|
107 | 107 | } |
108 | 108 | } |
@@ -54,7 +54,7 @@ |
||
54 | 54 | |
55 | 55 | /** |
56 | 56 | * @param int $userId |
57 | - * @return array[]|Generator |
|
57 | + * @return Generator |
|
58 | 58 | */ |
59 | 59 | public function getTokensForUser(int $userId) |
60 | 60 | { |
@@ -105,7 +105,7 @@ |
||
105 | 105 | /** |
106 | 106 | * @param string $eventType |
107 | 107 | * @param int $since |
108 | - * @return Generator|Job[] |
|
108 | + * @return Generator |
|
109 | 109 | */ |
110 | 110 | public function getEventsByTypeGenerator(string $eventType = null, int $since = 0) : Generator |
111 | 111 | { |
@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | */ |
60 | 60 | public function addEvent(AbstractEvent $event, int $timestamp = 0) : Job |
61 | 61 | { |
62 | - $jobId = $this->generateUniqueId('jobid:' . $event->getEventName()); |
|
62 | + $jobId = $this->generateUniqueId('jobid:'.$event->getEventName()); |
|
63 | 63 | $jobId = sprintf('%s:%s', $event->getEventName(), $jobId); |
64 | 64 | |
65 | 65 | $job = new Job($event, $jobId, $timestamp); |
@@ -80,7 +80,7 @@ discard block |
||
80 | 80 | $pipeline = $this->getRedis()->pipeline(['fire-and-forget' => true]); |
81 | 81 | if (empty($job->timestamp)) { |
82 | 82 | // immediate execution in background |
83 | - $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId . '#' . $serialized); |
|
83 | + $pipeline->lpush(self::QUEUE_IMMEDIATE, $job->jobId.'#'.$serialized); |
|
84 | 84 | } else { |
85 | 85 | // delayed execution |
86 | 86 | $pipeline->hset(self::META_DATA, $job->jobId, $serialized); |
@@ -120,7 +120,7 @@ discard block |
||
120 | 120 | |
121 | 121 | $keys = []; |
122 | 122 | foreach ($resultRaw as $jobId => $timestamp) { |
123 | - if (empty($eventType) || strpos($jobId, $eventType . ":") === 0) { |
|
123 | + if (empty($eventType) || strpos($jobId, $eventType.":") === 0) { |
|
124 | 124 | $keys[$jobId] = $timestamp; |
125 | 125 | } |
126 | 126 | } |
@@ -177,7 +177,7 @@ discard block |
||
177 | 177 | $immediate = $this->getRedis()->lrange(self::QUEUE_IMMEDIATE, 0, 100); |
178 | 178 | foreach ($immediate as $rawJob) { |
179 | 179 | list($jobId, $rawJob) = explode('#', $rawJob, 2); |
180 | - if (empty($eventType) || strpos($jobId, $eventType . ":") === 0) { |
|
180 | + if (empty($eventType) || strpos($jobId, $eventType.":") === 0) { |
|
181 | 181 | /** @var Job $job */ |
182 | 182 | $job = unserialize(base64_decode($rawJob)); |
183 | 183 | yield $job->jobId => $job; |
@@ -26,10 +26,10 @@ |
||
26 | 26 | $loader = new XmlFileLoader($container, new FileLocator()); |
27 | 27 | $filesystem = new Filesystem(); |
28 | 28 | |
29 | - if ($filesystem->exists(ROOT . 'app/container.xml')) { |
|
30 | - $loader->load(ROOT . 'app/container.xml'); |
|
31 | - } elseif ($filesystem->exists(ROOT . '/container.xml')) { |
|
32 | - $loader->load(ROOT . '/container.xml'); |
|
29 | + if ($filesystem->exists(ROOT.'app/container.xml')) { |
|
30 | + $loader->load(ROOT.'app/container.xml'); |
|
31 | + } elseif ($filesystem->exists(ROOT.'/container.xml')) { |
|
32 | + $loader->load(ROOT.'/container.xml'); |
|
33 | 33 | } |
34 | 34 | |
35 | 35 | $container->setParameter('dicId', uniqid()); |
@@ -16,14 +16,14 @@ |
||
16 | 16 | */ |
17 | 17 | public function boot() : Container |
18 | 18 | { |
19 | - $fileName = ROOT . 'cache/dic.php'; |
|
19 | + $fileName = ROOT.'cache/dic.php'; |
|
20 | 20 | /** @var Container $dic */ |
21 | 21 | if (!is_file($fileName)) { |
22 | 22 | $rebuild = new Rebuild(); |
23 | 23 | $rebuild->buildContainer(); |
24 | 24 | } |
25 | 25 | |
26 | - $className = file_get_contents(ROOT . 'cache/dic.txt'); |
|
26 | + $className = file_get_contents(ROOT.'cache/dic.txt'); |
|
27 | 27 | if (!class_exists($className, false)) { |
28 | 28 | include $fileName; |
29 | 29 | } |
@@ -27,7 +27,7 @@ |
||
27 | 27 | public function __construct(string $type, Job $job) |
28 | 28 | { |
29 | 29 | parent::__construct($type); |
30 | - $this->job = $job; |
|
30 | + $this->job = $job; |
|
31 | 31 | } |
32 | 32 | |
33 | 33 | /** |
@@ -33,7 +33,7 @@ |
||
33 | 33 | */ |
34 | 34 | public function generateRandomId(int$length = self::ID_LENGTH) : string |
35 | 35 | { |
36 | - $randomId = md5(microtime() . mt_rand()) . mt_rand(); |
|
36 | + $randomId = md5(microtime().mt_rand()).mt_rand(); |
|
37 | 37 | |
38 | 38 | return substr(base_convert($randomId, 10, 36), 0, $length); |
39 | 39 | } |
@@ -127,6 +127,6 @@ |
||
127 | 127 | */ |
128 | 128 | private function generateCacheKey(Request $request) : string |
129 | 129 | { |
130 | - return self::PREFIX . $request->getRequestUri(); |
|
130 | + return self::PREFIX.$request->getRequestUri(); |
|
131 | 131 | } |
132 | 132 | } |