Introduction
GitHub
Twitter
1
<\?php
2
3
namespace
App\Introduction
;
4
5
use
Tools\
SoftwareEngineerBuilder
;
6
7
class
MySelf
8
{
9
public
$name
=
'Max Nickl'
;
10
public
$jobTitle
=
'IT-Consultant - Software Engineer'
;
11
public
$location
=
'Bad Homburg, Germany'
;
12
13
public
function
build
()
14
{
15
return
(
new
SoftwareEngineerBuilder
())
16
->
studyBusinessInformationSystems
()
17
->
setSkills
([
18
'HTML',
19
'CSS',
20
'JavaScript',
21
'TypeScript',
22
'SQL',
23
'PHP',
24
])
25
->
setToSelfEmployed
()
26
->
build
()
;
27
}
28
}