Skip to content

Instantly share code, notes, and snippets.

@Arakaki
Created August 26, 2014 14:56
Show Gist options
  • Save Arakaki/da6e6ab1da713272e681 to your computer and use it in GitHub Desktop.
Save Arakaki/da6e6ab1da713272e681 to your computer and use it in GitHub Desktop.
<?php
/**
* @property CI_Form_validation $form_validation
*/
trait PropertyTrait {
}
class Hoge extends CI_Controller {
use PropertyTrait;
public function index() {
$this->form_validation->alpha("");
echo 'Hello World!';
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment