Skip to content

Instantly share code, notes, and snippets.

@notomato
Created August 17, 2012 07:54
Show Gist options
  • Save notomato/3376832 to your computer and use it in GitHub Desktop.
Save notomato/3376832 to your computer and use it in GitHub Desktop.
Make sure you return on redirect
<?php
// Make sure you return on redirect, not do this:
class PostsController extends Base {
public function view($post) {
if (!$post) {
$this->redirect("Posts::index");
}
// Herp derp
}
}
// source: http://www.slideshare.net/nateabele/the-state-of-lithium
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment