Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractInstruction.php
Go to the documentation of this file.
1 <?php
7 
12 {
18  protected $_instructions;
19 
25  public function getInstructions()
26  {
27  if ($this->_instructions === null) {
29  $method = $this->getMethod();
30  $this->_instructions = $method->getConfigData('instructions');
31  }
32  return $this->_instructions;
33  }
34 }
$method
Definition: info.phtml:13