Skip to content

Instantly share code, notes, and snippets.

@mdmunir
Created April 14, 2016 06:02
Show Gist options
  • Save mdmunir/ef10b060b368d8f10696e6350286f23a to your computer and use it in GitHub Desktop.
Save mdmunir/ef10b060b368d8f10696e6350286f23a to your computer and use it in GitHub Desktop.
<?php
namespace app\models;
/**
* Description of ContactInfo
*
* @author Misbahul D Munir <[email protected]>
* @since 1.0
*/
class ContactInfo extends \yii\db\ActiveRecord
{
/**
* @inheritdoc
*/
public function rules()
{
return [
[['name'], 'required'],
[['email'], 'email'],
[['phone', 'keterangan'], 'safe'],
];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment