Passed
Push — master ( 9e8a17...e039ce )
by Alexander
02:32 queued 30s
created

View::getBasePath()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
eloc 1
c 1
b 0
f 1
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
nc 1
nop 0
cc 1
crap 2
1
<?php
2
declare(strict_types = 1);
3
4
namespace Yiisoft\View;
5
6
use Psr\EventDispatcher\EventDispatcherInterface;
7
use Psr\Log\LoggerInterface;
8
use Yiisoft\I18n\Locale;
9
use Yiisoft\View\Event\AfterRender;
10
use Yiisoft\View\Event\BeforeRender;
11
use Yiisoft\View\Event\PageBegin;
12
use Yiisoft\View\Event\PageEnd;
13
use Yiisoft\Widget\Block;
14
use Yiisoft\Widget\ContentDecorator;
15
use Yiisoft\Widget\FragmentCache;
16
17
/**
18
 * View represents a view object in the MVC pattern.
19
 *
20
 * View provides a set of methods (e.g. {@see render()}) for rendering purpose.
21
 *
22
 * For more details and usage information on View, see the [guide article on views](guide:structure-views).
23
 */
24
class View implements DynamicContentAwareInterface
25
{
26
    /**
27
     * @var string $basePath view path
28
     */
29
    private $basePath;
30
31
    /**
32
     * @var array a list of named output blocks. The keys are the block names and the values are the corresponding block
33
     * content. You can call {@see beginBlock()} and {@see endBlock()} to capture small fragments of a view.
34
     * They can be later accessed somewhere else through this property.
35
     */
36
    public $blocks;
37
38
    /**
39
     * @var ViewContextInterface the context under which the {@see {renderFile()} method is being invoked.
40
     */
41
    public $context;
42
43
    /**
44
     * @var string the default view file extension. This will be appended to view file names if they don't have file
45
     * extensions.
46
     */
47
    public $defaultExtension = 'php';
48
49
    /**
50
     * @var mixed custom parameters that are shared among view templates.
51
     */
52
    public $params = [];
53
54
    /**
55
     * @var EventDispatcherInterface $eventDispatcher
56
     */
57
    protected $eventDispatcher;
58
59
    /**
60
     * @var array a list of available renderers indexed by their corresponding supported file extensions. Each renderer
61
     * may be a view renderer object or the configuration for creating the renderer object. For example, the
62
     * following configuration enables the Twig view renderer:
63
     *
64
     * ```php
65
     * [
66
     *     'twig' => ['__class' => \Yiisoft\Yii\Twig\ViewRenderer::class],
67
     * ]
68
     * ```
69
     *
70
     * If no renderer is available for the given view file, the view file will be treated as a normal PHP and rendered
71
     * via PhpTemplateRenderer.
72
     */
73
    protected $renderers = [];
74
75
    /**
76
     * @var Theme the theme object.
77
     */
78
    protected $theme;
79
80
    /**
81
     * @var DynamicContentAwareInterface[] a list of currently active dynamic content class instances.
82
     */
83
    private $cacheStack = [];
84
85
    /**
86
     * @var array a list of placeholders for embedding dynamic contents.
87
     */
88
    private $dynamicPlaceholders = [];
89
90
    /**
91
     * @var string $language
92
     */
93
    private $language = 'en';
94
95
    /**
96
     * @var LoggerInterface $logger
97
     */
98
    private $logger;
99
100
    /**
101
     * @var string $sourceLanguage
102
     */
103
    private $sourceLanguage = 'en';
104
105
    /**
106
     * @var Locale source locale used to find localized view file.
107
     */
108
    private $sourceLocale;
109
110
    /**
111
     * @var array the view files currently being rendered. There may be multiple view files being
112
     * rendered at a moment because one view may be rendered within another.
113
     */
114
    private $viewFiles = [];
115
116 51
    public function __construct(string $basePath, Theme $theme, EventDispatcherInterface $eventDispatcher, LoggerInterface $logger)
117
    {
118 51
        $this->basePath = $basePath;
119 51
        $this->theme = $theme;
120 51
        $this->eventDispatcher = $eventDispatcher;
121 51
        $this->logger = $logger;
122
    }
123
124
    public function getBasePath(): string
125
    {
126
        return $this->basePath;
127
    }
128
129
    public function setRenderers(array $renderers): void
130
    {
131
        $this->renderers = $renderers;
132
    }
133
134
    public function setSourceLanguage(string $language): void
135
    {
136
        $this->sourceLanguage = $language;
137
    }
138
139
    public function setLanguage(string $language): void
140
    {
141
        $this->language = $language;
142
    }
143
144
    /**
145
     * Renders a view.
146
     *
147
     * The view to be rendered can be specified in one of the following formats:
148
     *
149
     * - [path alias](guide:concept-aliases) (e.g. "@app/views/site/index");
150
     * - absolute path within application (e.g. "//site/index"): the view name starts with double slashes. The actual
151
     *   view file will be looked for under the [[Application::viewPath|view path]] of the application.
152
     * - absolute path within current module (e.g. "/site/index"): the view name starts with a single slash. The actual
153
     *   view file will be looked for under the [[Module::viewPath|view path]] of the [[Controller::module|current module]].
154
     * - relative view (e.g. "index"): the view name does not start with `@` or `/`. The corresponding view file will be
155
     *   looked for under the {@see ViewContextInterface::getViewPath()|view path} of the view `$context`.
156
     *   If `$context` is not given, it will be looked for under the directory containing the view currently
157
     *   being rendered (i.e., this happens when rendering a view within another view).
158
     *
159
     * @param string $view the view name.
160
     * @param array $params the parameters (name-value pairs) that will be extracted and made available in the view
161
     * file.
162
     * @param object $context the context to be assigned to the view and can later be accessed via [[context]] in the
163
     * view. If the context implements {@see ViewContextInterface}, it may also be used to locate
164
     * the view file corresponding to a relative view name.
165
     *
166
     * @return string the rendering result
167
     *
168
     * @throws InvalidCallException  if the view cannot be resolved.
169
     * @throws ViewNotFoundException if the view file does not exist.
170
     *
171
     * {@see renderFile()}
172
     */
173 2
    public function render($view, $params = [], $context = null)
174
    {
175 2
        $viewFile = $this->findTemplateFile($view, $context);
176 2
        return $this->renderFile($viewFile, $params, $context);
177
    }
178
179
    /**
180
     * Finds the view file based on the given view name.
181
     *
182
     * @param string $view the view name or the [path alias](guide:concept-aliases) of the view file. Please refer to
183
     * {@see render()} on how to specify this parameter.
184
     * @param object $context the context to be assigned to the view and can later be accessed via [[context]] in the
185
     * view. If the context implements [[ViewContextInterface]], it may also be used to locate the view
186
     * file corresponding to a relative view name.
187
     *
188
     * @throws InvalidCallException if a relative view name is given while there is no active context to determine the
189
     * corresponding view file.
190
     *
191
     * @return string the view file path. Note that the file may not exist.
192
     */
193 2
    protected function findTemplateFile(string $view, $context = null): string
194
    {
195 2
        if (strncmp($view, '//', 2) === 0) {
196
            // path relative to basePath e.g. "//layouts/main"
197 2
            $file = $this->basePath . '/' . ltrim($view, '/');
198 1
        } elseif ($context instanceof ViewContextInterface) {
199
            // path provided by context
200
            $file = $context->getViewPath() . '/' . $view;
201 1
        } elseif (($currentViewFile = $this->getRequestedViewFile()) !== false) {
202
            // path relative to currently rendered view
203 1
            $file = dirname($currentViewFile) . '/' . $view;
0 ignored issues
show
Bug introduced by
It seems like $currentViewFile can also be of type true; however, parameter $path of dirname() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

203
            $file = dirname(/** @scrutinizer ignore-type */ $currentViewFile) . '/' . $view;
Loading history...
204
        } else {
205
            throw new \RuntimeException("Unable to resolve view file for view '$view': no active view context.");
206
        }
207
208 2
        if (pathinfo($file, PATHINFO_EXTENSION) !== '') {
209 1
            return $file;
210
        }
211
212 1
        $path = $file . '.' . $this->defaultExtension;
213
214 1
        if ($this->defaultExtension !== 'php' && !is_file($path)) {
215
            $path = $file . '.php';
216
        }
217
218 1
        return $path;
219
    }
220
221
    /**
222
     * Renders a view file.
223
     *
224
     * If {@see theme} is enabled (not null), it will try to render the themed version of the view file as long as it
225
     * is available.
226
     *
227
     * If {@see renderers|renderer} is enabled (not null), the method will use it to render the view file. Otherwise,
228
     * it will simply include the view file as a normal PHP file, capture its output and
229
     * return it as a string.
230
     *
231
     * @param string $viewFile the view file. This can be either an absolute file path or an alias of it.
232
     * @param array $params the parameters (name-value pairs) that will be extracted and made available in the view
233
     * file.
234
     * @param object $context the context that the view should use for rendering the view. If null, existing [[context]]
235
     * will be used.
236
     *
237
     * @throws ViewNotFoundException if the view file does not exist
238
     *
239
     * @return string the rendering result
240
     */
241 33
    public function renderFile(string $viewFile, array $params = [], object $context = null): string
242
    {
243
        // TODO: these two match now
244 33
        $requestedFile = $viewFile;
245
246 33
        if ($this->theme !== null) {
247 33
            $viewFile = $this->theme->applyTo($viewFile);
248
        }
249 33
        if (is_file($viewFile)) {
250 33
            $viewFile = $this->localize($viewFile);
251
        } else {
252
            throw new ViewNotFoundException("The view file does not exist: $viewFile");
253
        }
254
255 33
        $oldContext = $this->context;
256 33
        if ($context !== null) {
257
            $this->context = $context;
258
        }
259 33
        $output = '';
260 33
        $this->viewFiles[] = [
261 33
            'resolved' => $viewFile,
262 33
            'requested' => $requestedFile,
263
        ];
264
265 33
        if ($this->beforeRender($viewFile, $params)) {
266 33
            $this->logger->debug("Rendering view file: $viewFile");
267 33
            $ext = pathinfo($viewFile, PATHINFO_EXTENSION);
268 33
            $renderer = $this->renderers[$ext] ?? new PhpTemplateRenderer();
269 33
            $output = $renderer->render($this, $viewFile, $params);
270
271 33
            $this->afterRender($viewFile, $params, $output);
272
        }
273
274 33
        array_pop($this->viewFiles);
275 33
        $this->context = $oldContext;
276
277 33
        return $output;
278
    }
279
280
    /**
281
     * Returns the localized version of a specified file.
282
     *
283
     * The searching is based on the specified language code. In particular, a file with the same name will be looked
284
     * for under the subdirectory whose name is the same as the language code. For example, given the file
285
     * "path/to/view.php" and language code "zh-CN", the localized file will be looked for as path/to/zh-CN/view.php".
286
     * If the file is not found, it will try a fallback with just a language code that is "zh" i.e. "path/to/zh/view.php".
287
     * If it is not found as well the original file will be returned.
288
     *
289
     * If the target and the source language codes are the same, the original file will be returned.
290
     *
291
     * @param string $file the original file
292
     * @param string|null $language the target language that the file should be localized to.
293
     * @param string|null $sourceLanguage the language that the original file is in.
294
     *
295
     * @return string the matching localized file, or the original file if the localized version is not found.
296
     * If the target and the source language codes are the same, the original file will be returned.
297
     */
298 34
    public function localize(string $file, ?string $language = null, ?string $sourceLanguage = null): string
299
    {
300 34
        $language = $language ?? $this->language;
301 34
        $sourceLanguage = $sourceLanguage ?? $this->sourceLanguage;
302
303 34
        if ($language === $sourceLanguage) {
304 34
            return $file;
305
        }
306 1
        $desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file);
307 1
        if (is_file($desiredFile)) {
308 1
            return $desiredFile;
309
        }
310
311
        $language = substr($language, 0, 2);
312
        if ($language === $sourceLanguage) {
313
            return $file;
314
        }
315
        $desiredFile = dirname($file) . DIRECTORY_SEPARATOR . $language . DIRECTORY_SEPARATOR . basename($file);
316
317
        return is_file($desiredFile) ? $desiredFile : $file;
318
    }
319
320
    /**
321
     * @return string|bool the view file currently being rendered. False if no view file is being rendered.
322
     */
323 31
    public function getViewFile()
324
    {
325 31
        return empty($this->viewFiles) ? false : end($this->viewFiles)['resolved'];
326
    }
327
328
    /**
329
     * @return string|bool the requested view currently being rendered. False if no view file is being rendered.
330
     */
331 1
    protected function getRequestedViewFile()
332
    {
333 1
        return empty($this->viewFiles) ? false : end($this->viewFiles)['requested'];
334
    }
335
336
    /**
337
     * This method is invoked right before {@see renderFile()} renders a view file.
338
     *
339
     * The default implementation will trigger the {@see BeforeRender()} event. If you override this method, make sure
340
     * you call the parent implementation first.
341
     *
342
     * @param string $viewFile the view file to be rendered.
343
     * @param array $params the parameter array passed to the {@see render()} method.
344
     *
345
     * @return bool whether to continue rendering the view file.
346
     */
347 33
    public function beforeRender(string $viewFile, array $params): bool
348
    {
349 33
        $event = new BeforeRender($viewFile, $params);
350 33
        $this->eventDispatcher->dispatch($event);
351
352 33
        return !$event->isPropagationStopped();
353
    }
354
355
    /**
356
     * This method is invoked right after {@see renderFile()} renders a view file.
357
     *
358
     * The default implementation will trigger the {@see AfterRender} event. If you override this method, make sure you
359
     * call the parent implementation first.
360
     *
361
     * @param string $viewFile the view file being rendered.
362
     * @param array  $params the parameter array passed to the {@see render()} method.
363
     * @param string $output the rendering result of the view file. Updates to this parameter
364
     * will be passed back and returned by {@see renderFile()}.
365
     */
366 33
    public function afterRender(string $viewFile, array $params, &$output): string
367
    {
368 33
        $event = new AfterRender($viewFile, $params, $output);
369 33
        $this->eventDispatcher->dispatch($event);
370
371 33
        return $event->getResult();
372
    }
373
374
    /**
375
     * Renders dynamic content returned by the given PHP statements.
376
     *
377
     * This method is mainly used together with content caching (fragment caching and page caching) when some portions
378
     * of the content (called *dynamic content*) should not be cached. The dynamic content must be returned by some PHP
379
     * statements. You can optionally pass additional parameters that will be available as variables in the PHP
380
     * statement:.
381
     *
382
     * ```php
383
     * <?= $this->renderDynamic('return foo($myVar);', [
384
     *     'myVar' => $model->getMyComplexVar(),
385
     * ]) ?>
386
     * ```
387
     *
388
     * @param string $statements the PHP statements for generating the dynamic content.
389
     * @param array  $params the parameters (name-value pairs) that will be extracted and made
390
     * available in the $statement context. The parameters will be stored in the cache and be reused
391
     * each time $statement is executed. You should make sure, that these are safely serializable.
392
     *
393
     * @return string the placeholder of the dynamic content, or the dynamic content if there is no active content
394
     *                cache currently.
395
     */
396
    public function renderDynamic(string $statements, array $params = []): string
397
    {
398
        if (!empty($params)) {
399
            $statements = 'extract(unserialize(\'' . str_replace(['\\', '\''], ['\\\\', '\\\''], serialize($params)) . '\'));' . $statements;
400
        }
401
402
        if (!empty($this->cacheStack)) {
403
            $n = count($this->dynamicPlaceholders);
404
            $placeholder = "<![CDATA[YII-DYNAMIC-$n]]>";
405
            $this->addDynamicPlaceholder($placeholder, $statements);
406
407
            return $placeholder;
408
        }
409
410
        return $this->evaluateDynamicContent($statements);
411
    }
412
413
    /**
414
     * Get source locale.
415
     *
416
     * @return Locale
417
     */
418
    public function getSourceLocale(): Locale
419
    {
420
        if ($this->sourceLocale === null) {
421
            $this->sourceLocale = Locale::create('en-US');
0 ignored issues
show
Bug introduced by
The method create() does not exist on Yiisoft\I18n\Locale. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

421
            /** @scrutinizer ignore-call */ 
422
            $this->sourceLocale = Locale::create('en-US');

This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.

This is most likely a typographical error or the method has been renamed.

Loading history...
422
        }
423
424
        return $this->sourceLocale;
425
    }
426
427
    /**
428
     * Set source locale.
429
     *
430
     * @param string $locale
431
     * @return self
432
     */
433
    public function setSourceLocale(string $locale): self
434
    {
435
        $this->sourceLocale = Locale::create($locale);
436
437
        return $this;
438
    }
439
440
    public function getDynamicPlaceholders(): array
441
    {
442
        return $this->dynamicPlaceholders;
443
    }
444
445
    public function setDynamicPlaceholders(array $placeholders): void
446
    {
447
        $this->dynamicPlaceholders = $placeholders;
448
    }
449
450
    public function addDynamicPlaceholder(string $placeholder, string $statements): void
451
    {
452
        foreach ($this->cacheStack as $cache) {
453
            $cache->addDynamicPlaceholder($placeholder, $statements);
454
        }
455
456
        $this->dynamicPlaceholders[$placeholder] = $statements;
457
    }
458
459
    /**
460
     * Evaluates the given PHP statements.
461
     *
462
     * This method is mainly used internally to implement dynamic content feature.
463
     *
464
     * @param string $statements the PHP statements to be evaluated.
465
     *
466
     * @return mixed the return value of the PHP statements.
467
     */
468
    public function evaluateDynamicContent(string $statements)
469
    {
470
        return eval($statements);
0 ignored issues
show
introduced by
The use of eval() is discouraged.
Loading history...
471
    }
472
473
    /**
474
     * Returns a list of currently active dynamic content class instances.
475
     *
476
     * @return DynamicContentAwareInterface[] class instances supporting dynamic contents.
477
     */
478
    public function getDynamicContents()
479
    {
480
        return $this->cacheStack;
481
    }
482
483
    /**
484
     * Adds a class instance supporting dynamic contents to the end of a list of currently active dynamic content class
485
     * instances.
486
     *
487
     * @param DynamicContentAwareInterface $instance class instance supporting dynamic contents.
488
     *
489
     * @return void
490
     */
491
    public function pushDynamicContent(DynamicContentAwareInterface $instance): void
492
    {
493
        $this->cacheStack[] = $instance;
494
    }
495
496
    /**
497
     * Removes a last class instance supporting dynamic contents from a list of currently active dynamic content class
498
     * instances.
499
     *
500
     * @return void
501
     */
502
    public function popDynamicContent(): void
503
    {
504
        array_pop($this->cacheStack);
505
    }
506
507
    /**
508
     * Begins recording a block.
509
     *
510
     * This method is a shortcut to beginning {@see Block}.
511
     *
512
     * @param string $id the block ID.
513
     * @param bool $renderInPlace whether to render the block content in place.
514
     * Defaults to false, meaning the captured block will not be displayed.
515
     *
516
     * @return Block the Block widget instance
517
     */
518
    public function beginBlock($id, $renderInPlace = false): Block
519
    {
520
        return Block::begin([
0 ignored issues
show
Bug Best Practice introduced by
The expression return Yiisoft\Widget\Bl...lace, 'view' => $this)) returns the type Yiisoft\Widget\Widget which includes types incompatible with the type-hinted return Yiisoft\Widget\Block.
Loading history...
521
            'id' => $id,
522
            'renderInPlace' => $renderInPlace,
523
            'view' => $this,
524
        ]);
525
    }
526
527
    /**
528
     * Ends recording a block.
529
     *
530
     * @return void
531
     */
532
    public function endBlock(): void
533
    {
534
        Block::end();
535
    }
536
537
    /**
538
     * Begins the rendering of content that is to be decorated by the specified view.
539
     *
540
     * This method can be used to implement nested layout. For example, a layout can be embedded in another layout file
541
     * specified as '@app/views/layouts/base.php' like the following:
542
     *
543
     * ```php
544
     * <?php $this->beginContent('@app/views/layouts/base.php'); ?>
545
     * //...layout content here...
546
     * <?php $this->endContent(); ?>
547
     * ```
548
     *
549
     * @param string $viewFile the view file that will be used to decorate the content enclosed by this widget. This can
550
     * be specified as either the view file path or [path alias](guide:concept-aliases).
551
     * @param array $params the variables (name => value) to be extracted and made available in the decorative view.
552
     *
553
     * @return ContentDecorator the ContentDecorator widget instance
554
     *
555
     * {@see ContentDecorator}
556
     */
557
    public function beginContent(string $viewFile, array $params = []): ContentDecorator
558
    {
559
        return ContentDecorator::begin([
0 ignored issues
show
Bug Best Practice introduced by
The expression return Yiisoft\Widget\Co...rams, 'view' => $this)) returns the type Yiisoft\Widget\Widget which includes types incompatible with the type-hinted return Yiisoft\Widget\ContentDecorator.
Loading history...
560
            'viewFile' => $viewFile,
561
            'params' => $params,
562
            'view' => $this,
563
        ]);
564
    }
565
566
    /**
567
     * Ends the rendering of content.
568
     *
569
     * @return void
570
     */
571
    public function endContent(): void
572
    {
573
        ContentDecorator::end();
574
    }
575
576
    /**
577
     * Begins fragment caching.
578
     *
579
     * This method will display cached content if it is available. If not, it will start caching and would expect an
580
     * {@see endCache()} call to end the cache and save the content into cache. A typical usage of fragment caching is
581
     * as follows,
582
     *
583
     * ```php
584
     * if ($this->beginCache($id)) {
585
     *     // ...generate content here
586
     *     $this->endCache();
587
     * }
588
     * ```
589
     *
590
     * @param string $id a unique ID identifying the fragment to be cached.
591
     * @param array $properties initial property values for {@see FragmentCache}
592
     *
593
     * @return bool whether you should generate the content for caching.
594
     * False if the cached version is available.
595
     */
596
    public function beginCache(string $id, array $properties = []): bool
597
    {
598
        $properties['id'] = $id;
599
        $properties['view'] = $this;
600
        $cache = FragmentCache::begin($properties);
601
        if ($cache->getCachedContent() !== false) {
0 ignored issues
show
Bug introduced by
The method getCachedContent() does not exist on Yiisoft\Widget\Widget. It seems like you code against a sub-type of Yiisoft\Widget\Widget such as Yiisoft\Widget\FragmentCache. ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-call  annotation

601
        if ($cache->/** @scrutinizer ignore-call */ getCachedContent() !== false) {
Loading history...
602
            $this->endCache();
603
604
            return false;
605
        }
606
607
        return true;
608
    }
609
610
    /**
611
     * Ends fragment caching.
612
     *
613
     * @return void
614
     */
615
    public function endCache(): void
616
    {
617
        FragmentCache::end();
618
    }
619
620
    /**
621
     * Marks the beginning of a page.
622
     *
623
     * @return void
624
     */
625 31
    public function beginPage(): void
626
    {
627 31
        ob_start();
628 31
        ob_implicit_flush(0);
629
630 31
        $this->eventDispatcher->dispatch(new PageBegin($this->getViewFile()));
0 ignored issues
show
Bug introduced by
It seems like $this->getViewFile() can also be of type boolean; however, parameter $file of Yiisoft\View\Event\PageBegin::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

630
        $this->eventDispatcher->dispatch(new PageBegin(/** @scrutinizer ignore-type */ $this->getViewFile()));
Loading history...
631
    }
632
633
    /**
634
     * Marks the ending of a page.
635
     *
636
     * @return void
637
     */
638
    public function endPage(): void
639
    {
640
        $this->eventDispatcher->dispatch(new PageEnd($this->getViewFile()));
0 ignored issues
show
Bug introduced by
It seems like $this->getViewFile() can also be of type boolean; however, parameter $file of Yiisoft\View\Event\PageEnd::__construct() does only seem to accept string, maybe add an additional type check? ( Ignorable by Annotation )

If this is a false-positive, you can also ignore this issue in your code via the ignore-type  annotation

640
        $this->eventDispatcher->dispatch(new PageEnd(/** @scrutinizer ignore-type */ $this->getViewFile()));
Loading history...
641
        ob_end_flush();
642
    }
643
}
644