Skip to content

Instantly share code, notes, and snippets.

View LeNiglo's full-sized avatar
🇫🇷
Laravel - VueJS

Guillaume Lefrant LeNiglo

🇫🇷
Laravel - VueJS
View GitHub Profile
@tomcurran
tomcurran / Answer.php
Created April 9, 2012 19:13
PDO abstract model
<?php
class Answer extends ModelPDO {
public static function getAllByQuestion($question) {
return self::getAllBy('question_id', $question->id);
}
public function __construct($data = false) {