ActiveRecord\Table::set_setters_and_getters PHP Method

set_setters_and_getters() private method

Deprecation: Model.php now checks for get|set_ methods via method_exists so there is no need for declaring static g|setters.
    private function set_setters_and_getters()
    {
        $getters = $this->class->getStaticPropertyValue('getters', array());
        $setters = $this->class->getStaticPropertyValue('setters', array());
        if (!empty($getters) || !empty($setters)) {
            trigger_error('static::$getters and static::$setters are deprecated. Please define your setters and getters by declaring methods in your model prefixed with get_ or set_. See
			http://www.phpactiverecord.org/projects/main/wiki/Utilities#attribute-setters and http://www.phpactiverecord.org/projects/main/wiki/Utilities#attribute-getters on how to make use of this option.', E_USER_DEPRECATED);
        }
    }