Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Dimension.php
Go to the documentation of this file.
1 <?php
6 declare(strict_types=1);
7 
9 
15 class Dimension
16 {
20  private $name;
21 
25  private $value;
26 
31  public function __construct(string $name, string $value)
32  {
33  $this->name = $name;
34  $this->value = $value;
35  }
36 
42  public function getName(): string
43  {
44  return $this->name;
45  }
46 
52  public function getValue(): string
53  {
54  return $this->value;
55  }
56 }
$block setTitle( 'CMS Block Title') -> setIdentifier('fixture_block') ->setContent('< h1 >Fixture Block Title</h1 >< a href=" store url</a><p> Config value
Definition: block.php:9
__construct(string $name, string $value)
Definition: Dimension.php:31
if(!isset($_GET['name'])) $name
Definition: log.php:14