Example #1
0
 /**
  * Sets terminal dimensions.
  * 
  * Can be useful to force terminal dimensions for functional tests.
  *
  * @param int $width The width
  * @param int $height The height
  * @return \Symfony\Component\Console\Application The current application
  * @static 
  */
 public static function setTerminalDimensions($width, $height)
 {
     //Method inherited from \Symfony\Component\Console\Application
     return \Illuminate\Console\Application::setTerminalDimensions($width, $height);
 }