Skip to content

Commit

Permalink
Add var docs
Browse files Browse the repository at this point in the history
  • Loading branch information
girorme committed Sep 29, 2019
1 parent 61c5d4b commit 9cec4d6
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 1 deletion.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,6 +54,11 @@ But at the same time you still WANT to implement **good practices** and **standa
--standard The name or path of the coding standard. Defaults to PSR12.
```

## Run tests
```bash
$ composer test
```

### License

```
Expand Down
2 changes: 1 addition & 1 deletion src/Main.php
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ public function __construct()
*
* @return void
*/
private function setUtil(Util $util): void
public function setUtil(Util $util): void
{
$this->util = $util;
}
Expand Down
5 changes: 5 additions & 0 deletions src/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,11 @@
class Util
{

/**
* Os util
*
* @var Os
*/
private $os;


Expand Down

0 comments on commit 9cec4d6

Please sign in to comment.