| Conditions | 1 |
| Paths | 1 |
| Total Lines | 7 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php namespace norsys\score\composer\depedency\version\semver; |
||
| 9 | function __construct(semver\number $minor = null, semver\number $patch = null, semver\converter\toString $semverToStringConverter = null) |
||
|
|
|||
| 10 | { |
||
| 11 | parent::__construct( |
||
| 12 | new semver\number\initial, |
||
| 13 | $minor, |
||
| 14 | $patch, |
||
| 15 | $semverToStringConverter |
||
| 16 | ); |
||
| 19 |
Adding explicit visibility (
private,protected, orpublic) is generally recommend to communicate to other developers how, and from where this method is intended to be used.