Welcome to mirror list, hosted at ThFree Co, Russian Federation.

StringInterpreterEvent.php « Event « EventHandler « Plugin « Psalm « src « psalm « vimeo « vendor - github.com/nextcloud/updater.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c92d244295be688ef5c5ba8ef6e641267e19b0f3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
<?php

namespace Psalm\Plugin\EventHandler\Event;

class StringInterpreterEvent
{
    /**
     * @var string
     */
    private $value;

    /**
     * Called after a statement has been checked
     */
    public function __construct(string $value)
    {
        $this->value = $value;
    }

    public function getValue(): string
    {
        return $this->value;
    }
}