Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Trim.php
Go to the documentation of this file.
1 <?php
13 
14 class Trim implements \Magento\Framework\Data\Form\Filter\FilterInterface
15 {
22  public function inputFilter($value)
23  {
24  return trim($value, ' ');
25  }
26 
33  public function outputFilter($value)
34  {
35  return $value;
36  }
37 }
$value
Definition: gender.phtml:16