Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | 5 | public function __construct(Attachment $attachment) |
|
26 | { |
||
27 | 5 | if (self::$seed === null) { |
|
|
|||
28 | 1 | self::$seed = sha1(mt_rand() . microtime()); |
|
29 | 1 | } else { |
|
30 | 5 | self::$seed = sha1("d73TfecaRMDmRPqBgy4Lv5wZavBeHagmqnLBgd5w" . self::$seed); |
|
31 | } |
||
32 | |||
33 | 5 | $this->attachment = $attachment; |
|
34 | 5 | $this->content_id = sha1(self::$seed) . "@kodus.mail"; |
|
35 | 5 | } |
|
53 |