forked from phalcon/incubator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
EnvironmentInterface.php
78 lines (68 loc) · 2.22 KB
/
EnvironmentInterface.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
<?php
/*
+------------------------------------------------------------------------+
| Phalcon Framework |
+------------------------------------------------------------------------+
| Copyright (c) 2011-2016 Phalcon Team (https://www.phalconphp.com) |
+------------------------------------------------------------------------+
| This source file is subject to the New BSD License that is bundled |
| with this package in the file LICENSE.txt. |
| |
| If you did not receive a copy of the license and are unable to |
| obtain it through the world-wide-web, please send an email |
| to license@phalconphp.com so we can send you a copy immediately. |
+------------------------------------------------------------------------+
| Authors: Serghei Iakovlev <serghei@phalconphp.com> |
+------------------------------------------------------------------------+
*/
namespace Phalcon\Cli\Environment;
/**
* Environment Interface
*
* @package Phalcon\Cli\Environment
*/
interface EnvironmentInterface
{
const STDIN = 0;
const STDOUT = 1;
const STDERR = 2;
const WIDTH = 80;
const HEIGHT = 25;
/**
* Checks if currently running under MS Windows.
*
* @return bool
*/
public function isWindows();
/**
* Checks if running in a console environment (CLI).
*
* @return bool
*/
public function isConsole();
/**
* Checks if the file descriptor is an interactive terminal.
*
* @param int|resource $fd File descriptor, must be either a file resource or an integer [Optional]
* @return bool
*/
public function isInteractive($fd = self::STDOUT);
/**
* Checks the supports of colorization.
*
* @return bool
*/
public function hasColorSupport();
/**
* Gets the number of columns of the terminal.
*
* @return int
*/
public function getNumberOfColumns();
/**
* Gets the number of rows of the terminal.
*
* @return int
*/
public function getNumberOfRows();
}