Skip to content

Instantly share code, notes, and snippets.

<?php
/**
* @author Pavel Kalvoda
*/
abstract class BasePresenter extends Nette\Application\Presenter {
protected function getAutosaveableProperties() {
$props = $this->getReflection()->getProperties();
$props = array_filter($props, function($prop) {