1*ab8e5256SAndreas Gohr<?php 2*ab8e5256SAndreas Gohr 3*ab8e5256SAndreas Gohrnamespace splitbrain\phpcli; 4*ab8e5256SAndreas Gohr 5*ab8e5256SAndreas Gohruse Psr\Log\LoggerInterface; 6*ab8e5256SAndreas Gohr 7*ab8e5256SAndreas Gohr/** 8*ab8e5256SAndreas Gohr * Class PSR3CLI 9*ab8e5256SAndreas Gohr * 10*ab8e5256SAndreas Gohr * This class can be used instead of the CLI class when a class implementing 11*ab8e5256SAndreas Gohr * PSR3 version 2 is needed. 12*ab8e5256SAndreas Gohr * 13*ab8e5256SAndreas Gohr * @see PSR3CLIv3 for a version 3 compatible class 14*ab8e5256SAndreas Gohr */ 15*ab8e5256SAndreas Gohrabstract class PSR3CLI extends CLI implements LoggerInterface { 16*ab8e5256SAndreas Gohr} 17