Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
DiParent.php
Go to the documentation of this file.
1 <?php
6 namespace Magento\Test\Di;
7 
8 require_once __DIR__ . '/DiInterface.php';
10 {
14  protected $_wrapperSymbol;
15 
19  public function __construct($wrapperSymbol = '|')
20  {
21  $this->_wrapperSymbol = $wrapperSymbol;
22  }
23 
28  public function wrap($param)
29  {
30  return $this->_wrapperSymbol . $param . $this->_wrapperSymbol;
31  }
32 }
__construct($wrapperSymbol='|')
Definition: DiParent.php:19
defined('TESTS_BP')||define('TESTS_BP' __DIR__
Definition: _bootstrap.php:60