-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.php
More file actions
26 lines (22 loc) · 775 Bytes
/
index.php
File metadata and controls
26 lines (22 loc) · 775 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
/**
* Project: Learning Path for rtCamp
* Purpose: Demonstrating PHP proficiency for Associate Engineer role.
*/
class EngineeringRoadmap {
public $candidate_goal = 'Associate WordPress Engineer';
public $university = 'Sathyabama Institute of Science and Technology';
// Skills required as per job description
public $skills = [
'backend' => ['PHP', 'MySQL'],
'frontend' => ['JavaScript', 'HTML', 'CSS', 'React'],
'tools' => ['Git', 'Composer']
];
public function show_commitment() {
return "I am ready to learn, write clean code, and contribute to Open Source.";
}
}
$me = new EngineeringRoadmap();
echo "Applying from: " . $me->university . "\n";
echo "Status: " . $me->show_commitment();
?>