<?php
namespace Illuminate\Console;
class Signals
{
protected $registry;
protected $previousHandlers;
protected static $availabilityResolver;
public function __construct($registry)
{
$this->registry = $registry;
$this->previousHandlers = $this->getHandlers();
}