Created
October 18, 2010 15:23
-
-
Save anonymous/632392 to your computer and use it in GitHub Desktop.
resume.php
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
//---------------------------------------------------------- | |
// * Some Questions Likely To Be Asked | |
//---------------------------------------------------------- | |
interface why_i_received_this_mail { | |
public function finding_a_job(); | |
} | |
interface say_something_about_your_self { | |
public function self_introduction(); | |
} | |
interface how_long_have_you_been_a_coder { | |
public function experience(); | |
public function portfolio(); | |
} | |
interface so_where_is_the_resume { | |
public function bring_up_resume(); | |
} | |
interface how_to_contact_you { | |
public function my_phone(); | |
public function my_email(); | |
public function my_facebook(); | |
public function my_twitter(); | |
} | |
//---------------------------------------------------------- | |
// * And That Is The Answer | |
//---------------------------------------------------------- | |
class %my_real_name% | |
implements | |
why_i_received_this_mail, | |
say_something_about_your_self, | |
how_long_have_you_been_a_coder, | |
so_where_is_the_resume, | |
how_to_contact_you { | |
/** | |
* class constructor | |
* | |
* @version 0.1.0 2007.05.24 | |
* @since 0.1.0 2007.05.24 | |
* @author --- | |
* @param none | |
* @return void | |
* @access public | |
*/ | |
public function __construct() { } | |
/** | |
* explain why this mail appears | |
* | |
* @version 0.1.0 2007.05.24 | |
* @since 0.1.0 2007.05.24 | |
* @author --- | |
* @param none | |
* @return void | |
* @access public | |
*/ | |
public function finding_a_job() { } | |
# ... and so on ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment