Skip to content

Instantly share code, notes, and snippets.

@neclimdul
Created March 19, 2015 21:30
Show Gist options
  • Save neclimdul/0108d8088fc5aca12765 to your computer and use it in GitHub Desktop.
Save neclimdul/0108d8088fc5aca12765 to your computer and use it in GitHub Desktop.
<?php
class something {
protected $results;
public function render() {
$results = $this->getResults();
}
protected function getResults() {
if ($this->results) {
return $this->results;
}
// db query and all that
$this->results = $stuff;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment