Skip to content

Commit

Permalink
Merge pull request #162 from mbonneau/finally-finalized
Browse files Browse the repository at this point in the history
Make Scheduler and FinallyOperator final classes
  • Loading branch information
davidwdan committed Apr 1, 2017
2 parents 9e0a79f + 45b4e30 commit aa61613
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Operator/FinallyOperator.php
Expand Up @@ -8,7 +8,7 @@
use Rx\ObservableInterface;
use Rx\ObserverInterface;

class FinallyOperator implements OperatorInterface
final class FinallyOperator implements OperatorInterface
{
/** @var callable */
private $callback;
Expand Down
2 changes: 1 addition & 1 deletion src/Scheduler.php
Expand Up @@ -6,7 +6,7 @@

use Rx\Scheduler\ImmediateScheduler;

class Scheduler
final class Scheduler
{
private static $default;
private static $async;
Expand Down

0 comments on commit aa61613

Please sign in to comment.