Skip to content

Commit

Permalink
Mark classes final
Browse files Browse the repository at this point in the history
  • Loading branch information
trowski committed Oct 20, 2018
1 parent 8ea6f65 commit 9d0d7ab
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/Process.php
Expand Up @@ -11,7 +11,7 @@
use Amp\Promise;
use function Amp\call;

class Process
final class Process
{
/** @var ProcessRunner */
private $processRunner;
Expand Down
2 changes: 1 addition & 1 deletion lib/ProcessInputStream.php
Expand Up @@ -11,7 +11,7 @@
use Amp\Promise;
use Amp\Success;

class ProcessInputStream implements InputStream
final class ProcessInputStream implements InputStream
{
/** @var Deferred */
private $initialRead;
Expand Down
2 changes: 1 addition & 1 deletion lib/ProcessOutputStream.php
Expand Up @@ -10,7 +10,7 @@
use Amp\Failure;
use Amp\Promise;

class ProcessOutputStream implements OutputStream
final class ProcessOutputStream implements OutputStream
{
/** @var \SplQueue */
private $queuedWrites;
Expand Down

0 comments on commit 9d0d7ab

Please sign in to comment.