forked from kautukkundan/Awesome-Profile-README-templates
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request kautukkundan#2 from adrcav/master
Code template
- Loading branch information
Showing
1 changed file
with
40 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
```php | ||
<?php | ||
|
||
namespace AshBaker; | ||
|
||
class About extends Me | ||
{ | ||
public function getCurrentWorkplace() | ||
{ | ||
return [ | ||
'workplace' => [ | ||
'company' => 'MEA Mobile', | ||
'position' => 'Full Stack Developer' | ||
] | ||
]; | ||
} | ||
|
||
public function getDailyKnowledge() | ||
{ | ||
return [ | ||
Php::class, | ||
Javascript::class, | ||
Laravel::class, | ||
Vuejs::class, | ||
Angular::class, | ||
ReactNative::class, | ||
TailwindCss::class, | ||
Aws::class, | ||
]; | ||
} | ||
|
||
public function getFutureGoal() | ||
{ | ||
return 'To contribute to open source.'; | ||
} | ||
} | ||
``` | ||
|
||
--- | ||
⭐️ From https://github.com/ashbakernz |