Skip to content

Commit

Permalink
Merge pull request kautukkundan#2 from adrcav/master
Browse files Browse the repository at this point in the history
Code template
  • Loading branch information
kautukkundan authored Jul 9, 2020
2 parents 3a0e32e + c4fbbe6 commit 649362a
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions code/template1.md
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

0 comments on commit 649362a

Please sign in to comment.