Taking PHP Seriously [pdf]
raw.github.com129 pointsby memla148 comments
$topic = $this->get('model.Topic')->find($topic_id);
$this->get('guardian')->ensureVisible($topic);
becomes this: $topic = Topic::find($topicId);
Guardian::ensureVisible($topic);