Last active
June 10, 2016 04:03
-
-
Save chrisiona/a5541fc11b6cda4c9fb9 to your computer and use it in GitHub Desktop.
Hipages – Now Hiring!
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 | |
/** | |
* Hipages Group Pty Ltd | |
* http://hipagesgroup.com.au | |
*/ | |
class Hipages_Software_Engineer extends Software_Engineer implements Startup_Culture | |
{ | |
/** | |
* About Hipages | |
* @var string | |
*/ | |
protected $mission = "To build Australia's #1 Home Improvements destination."; | |
protected $funding = '$6 million'; | |
protected $profitable = true; | |
protected $startup = true; | |
protected $salary = true; | |
/** | |
* Attributes of a Hipages Software Engineer | |
* @var array | |
*/ | |
protected $attributes = array( | |
'Exceptional Attitude', | |
'Loves PHP, AWS, Composer, MySQL, ORMs', | |
'Cares about the product as much as the code', | |
'Open Source Contributor', | |
'Rock solid foundations in software engineering principles', | |
'Intrinsically Motivated' | |
); | |
/** | |
* About Hipages | |
* @return array | |
*/ | |
public function aboutHipages(){ | |
return array( | |
'Funding' => $this -> funding, | |
'Profitable' => $this -> profitable, | |
'Pays Salary' => $this -> salary, | |
'Mission' => $this -> mission, | |
'Startup' => $this -> startup | |
); | |
} | |
/** | |
* About you | |
* @return array | |
*/ | |
public function getAttributes(){ | |
return $this -> attributes; | |
} | |
/** | |
* How to apply | |
* @return array | |
*/ | |
public function apply(){ | |
return array( | |
'stack_overflow' => 'http://careers.stackoverflow.com/company/hipagesgroup', | |
'linkedin' => 'https://www.linkedin.com/company/hipages-group/careers', | |
'seek' => 'http://www.seek.com.au/jobs/#advertiserID=18396347', | |
'email' => '[email protected]' | |
); | |
} | |
} | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment