Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
OneScalar.php
Go to the documentation of this file.
1 <?php
7 
11 class OneScalar
12 {
16  private $foo;
17 
21  public function __construct($foo)
22  {
23  $this->foo = $foo;
24  }
25 
29  public function getFoo()
30  {
31  return $this->foo;
32  }
33 }