1 | <?php |
||
23 | trait HandlerTrait |
||
24 | { |
||
25 | /** |
||
26 | * @var Configuration |
||
27 | */ |
||
28 | protected $configuration; |
||
29 | |||
30 | /** |
||
31 | * Set configuration. |
||
32 | * |
||
33 | * @param Configuration $configuration |
||
34 | * |
||
35 | * @return self |
||
36 | */ |
||
37 | public function setConfiguration(Configuration $configuration) |
||
43 | |||
44 | /** |
||
45 | * Checks if configuration is set. |
||
46 | * |
||
47 | * @throws \RuntimeException |
||
48 | */ |
||
49 | protected function testConfiguration() |
||
55 | |||
56 | /** |
||
57 | * Encrypt session data based on configuration encryption key. |
||
58 | * |
||
59 | * @param string $plainData |
||
60 | * |
||
61 | * @throws CryptoException |
||
62 | * |
||
63 | * @return string |
||
64 | */ |
||
65 | protected function encryptSessionData(string $plainData) : string |
||
73 | |||
74 | /** |
||
75 | * Decrypt session data based on configuration encryption key. |
||
76 | * |
||
77 | * @param string $encryptedData |
||
78 | * |
||
79 | * @return string |
||
80 | */ |
||
81 | protected function decryptSessionData(string $encryptedData) : string |
||
100 | } |
||
101 |
Scrutinizer analyzes your
composer.json
/composer.lock
file if available to determine the classes, and functions that are defined by your dependencies.It seems like the listed class was neither found in your dependencies, nor was it found in the analyzed files in your repository. If you are using some other form of dependency management, you might want to disable this analysis.