travis-ci
8 of 8 new or added lines in 2 files covered. (100.0%)
130 of 199 relevant lines covered (65.33%)
6.16 hits per line
1 |
<?php
|
|
2 |
namespace paragraph1\phpFCM\Recipient; |
|
3 |
|
|
4 |
class Topic implements Recipient |
|
5 |
{ |
|
6 |
private $name; |
|
7 |
|
|
8 |
public function __construct($name) |
|
9 |
{ |
× |
10 |
$this->name = $name; |
16 all except 52.3 ✔ |
11 |
} |
16 all except 52.3 ✔ |
12 |
|
|
13 |
public function getIdentifier() |
|
14 |
{ |
× |
15 |
return $this->name; |
14 all except 52.3 ✔ |
16 |
} |
× |
17 |
} |