Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
Item.php
Go to the documentation of this file.
1 <?php
8 
20 {
26  protected $_isDeleted = false;
27 
34  public function isDeleted($isDeleted = null)
35  {
37  if ($isDeleted !== null) {
38  $this->_isDeleted = $isDeleted;
39  }
40  return $result;
41  }
42 }