SSH Napisano Maj 11, 2015 Zgłoś Udostępnij Napisano Maj 11, 2015 <?php /******************************************************************** Poszukujemy wirtuoza programowania w PHP, który stanie się częścią zgranego zespołu firmy Sequence Software House. Zajmujemy się tworzeniem dedykowanego oprogramowania dla klientów głównie z sektora finansowego, z wykorzystaniem naszych autorskich rozwiązań. Proponujemy wynagrodzenie w oparciu o umowę o pracę i/lub umowę o dzieło w wysokości od 4000 do 5500 zł netto (zależne od umiejętności). Jeśli marzysz o pracy w firmie z klimatem startup-u:) tworzącej autorskie narzędzia, chcesz mieć rzeczywisty wpływ na realizacje projektów oraz pracować z zdolnym, nieustraszonym zespołem zapraszamy do kontaktu. ********************************************************************/ class Company { private $name; private $locationCity; private $locationDistrict; private $sector; private $employeesAmount; private $profits = array(); public function &__get($property) { if (property_exists($this, $property)) { return $this->$property; } } public function __set($property, $value) { if (property_exists($this, $property)) { $this->$property = $value; } } } class Programmer { private $startDate; private $minSalary; private $maxSalary; private $salaryCurrency; private $weeklyWorkingHoursAmount; private $startWorkHour; private $endWorkHour; private $tasks = array(); private $technologies = array(); protected $maxTechnologyUnit = 5; private $equipment = array(); public function &__get($property) { if (property_exists($this, $property)) { return $this->$property; } } public function __set($property, $value) { if (property_exists($this, $property)) { $this->$property = $value; } } } $we = new Company(); $we->name = "Sequence Software House"; $we->locationCity = "Warsaw"; $we->locationDistrict = "Żoliborz"; $we->sector = "Finance"; $we->employeesAmount = 14; $we->profits[] = 'Internal trainings'; $we->profits[] = 'Climatic office'; $we->profits[] = 'Stable job'; $we->profits[] = 'Relaxed Atmosphere'; $we->profits[] = 'Possibility of realisation your own ideas'; $we->profits[] = 'Coffee and tea with NO LIMITS :)'; $you = new Programmer(); $you->startDate = date('d m Y H:i:s'); $you->minSalary = 4000; $you->maxSalary = 5500; $you->salaryCurrency = 'PLN'; $you->weeklyWorkingHoursAmount = 40; $you->startWorkHour = 9; $you->endWorkHour = 17; $you->tasks[] = 'Adding new system functions'; $you->tasks[] = 'Debugging'; $you->tasks[] = 'Implementation'; $you->tasks[] = 'Updating specification and technical documentation'; $you->tasks[] = 'Meetings'; $you->technologies['HTML5'] = 4; $you->technologies['CSS3'] = 2; $you->technologies['JavaScript']= 2; $you->technologies['PHP'] = 5; $you->technologies['AJAX'] = 3; $you->technologies['ZF2'] = 4; $you->technologies['Symfony2'] = 3; $you->equipment[] = 'Windows 8.1'; $you->equipment[] = 'Dell Notebook'; /******************************************************************** If you are interested in our offer, send us your CV at recruitment@sequencesh.com ********************************************************************/ ?> Cytuj Link do komentarza Udostępnij na innych stronach More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.