Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
SyncHandler.php
Go to the documentation of this file.
1 <?php
7 
12 {
17  public function methodWithStringParam($param)
18  {
19  return 'Processed: ' . $param;
20  }
21 
26  public function methodWithBoolParam($param)
27  {
28  return !$param;
29  }
30 
35  public function methodWithMixedParam($param)
36  {
37  return $param;
38  }
39 }