Skip to content
This repository was archived by the owner on Dec 29, 2020. It is now read-only.

Commit 1b55db1

Browse files
committed
Add missing file. Updated dependencies.
1 parent 46068ec commit 1b55db1

File tree

2 files changed

+22
-2
lines changed

2 files changed

+22
-2
lines changed

composer.lock

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/Fixtures/Child.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
<?php
2+
3+
namespace bar;
4+
5+
class Child extends Foo implements BarInterface
6+
{
7+
use BazTrait;
8+
9+
public function test($a)
10+
{
11+
parent::test($a);
12+
}
13+
14+
/**
15+
* {@inheritdoc}
16+
*/
17+
public function baz(array $a, $b)
18+
{
19+
}
20+
}

0 commit comments

Comments
 (0)