Skip to content

Instantly share code, notes, and snippets.

@jgrossi
Created April 22, 2015 13:11
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgrossi/b477d97ab350f6b48e63 to your computer and use it in GitHub Desktop.
Save jgrossi/b477d97ab350f6b48e63 to your computer and use it in GitHub Desktop.
Customizing Corcel classes
<?php
// Creating your own class
namespace Your\Namespace;
use Corcel\Post as Corcel;
class Post extends Corcel
{
public $table = 'your_table';
}
// Using
$post = Your\Namespace\Post::find(123);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment