1: <?php
2:
3: namespace Deimos\Secure\Extension;
4:
5: trait Secret
6: {
7:
8: /**
9: * Server secret key
10: *
11: * @var string
12: */
13: private $secret = 'MTNE]8Gpz&B709%yXDQ1[4.k!#\';n}Pu-hvU&mK{?dlSoxg:s/qab"C@FV6HR,*t';
14:
15: /**
16: * @param string $value
17: *
18: * @return $this
19: */
20: protected function setSecret($value)
21: {
22: $this->secret = $value;
23:
24: return $this;
25: }
26:
27: }