1
0
mirror of https://github.com/danog/amp.git synced 2024-11-26 20:15:00 +01:00

Remove bogus .coveralls.yml file

This commit is contained in:
Bob Weinand 2016-08-15 15:38:52 +02:00
parent cef92e9770
commit 6a87658ad8
2 changed files with 2 additions and 3 deletions

View File

@ -1 +0,0 @@
src_dir: lib

View File

@ -65,9 +65,9 @@ final class Coroutine implements Awaitable {
}
if ($yielded instanceof Awaitable) {
$this->depth++;
++$this->depth;
$yielded->when($this->when);
$this->depth--;
--$this->depth;
return;
}