Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Response.php
Go to the documentation of this file.
1 <?php
7 
9 
13 class Response extends DataObject
14 {
21  public function getOutput()
22  {
23  return $this->getData('output');
24  }
25 
32  public function getExitCode()
33  {
34  return $this->getData('exit_code');
35  }
36 
43  public function getEscapedCommand()
44  {
45  return $this->getData('escaped_command');
46  }
47 }
getData($key='', $index=null)
Definition: DataObject.php:119