Skip to content

Instantly share code, notes, and snippets.

@Raistlfiren
Created February 10, 2016 21:49
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Raistlfiren/a2567479ff90022baa2d to your computer and use it in GitHub Desktop.
Save Raistlfiren/a2567479ff90022baa2d to your computer and use it in GitHub Desktop.
<?php
class Contact {
protected $maskEmail;
protected $email;
public function checkEmail()
{
if ($this->maskEmail){
return '****';
} else {
return $email;
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment