Code Coverage |
||||||||||||||||
Lines |
Branches |
Paths |
Functions and Methods |
Classes and Traits |
||||||||||||
| Total | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
|||||
| Settings | n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
n/a |
0 / 0 |
0 | n/a |
0 / 0 |
|||||
| 1 | <?php |
| 2 | namespace Shakemaps\Webservice; |
| 3 | |
| 4 | /** |
| 5 | * Shakemaps Settings |
| 6 | */ |
| 7 | class Settings { |
| 8 | /** |
| 9 | * @var Base URL to compile with Shakemaps server url |
| 10 | */ |
| 11 | public const basePath = 'https://%s/data/%s/current/products/%s'; |
| 12 | |
| 13 | /** |
| 14 | * @var Default server url |
| 15 | */ |
| 16 | public const defaultShakemapsServer = 'shakemap.rm.ingv.it'; |
| 17 | |
| 18 | } |
| 19 | ?> |
Below are the source code lines that represent each code branch as identified by Xdebug. Please note a branch is not
necessarily coterminous with a line, a line may contain multiple branches and therefore show up more than once.
Please also be aware that some branches may be implicit rather than explicit, e.g. an if statement
always has an else as part of its logical flow even if you didn't write one.