for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Created by Gorlum 19.08.2016 21:23
*/
namespace Entity;
* Class KeyedContainer
*
* @property int|float|string $dbId Entity\EntityModel unique ID for entire entities' set
* @property bool $isLoaded - This entity was loaded
* @property bool $isDeleted - This entity was loaded
* @package Entity
class KeyedContainer extends EntityContainer {
public function isChanged() {
return !empty($this->delta);
}