Skip to content

Instantly share code, notes, and snippets.

@chrisiona
Last active June 10, 2016 04:03
Show Gist options
  • Save chrisiona/a5541fc11b6cda4c9fb9 to your computer and use it in GitHub Desktop.
Save chrisiona/a5541fc11b6cda4c9fb9 to your computer and use it in GitHub Desktop.
Hipages – Now Hiring!
<?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' => 'careers@hipagesgroup.com.au'
);
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment