8000 GitHub - samfelgar/samfelgar
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

samfelgar/samfelgar

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 

Repository files navigation

<?php

namespace Samuel;

class About extends Me
{
    public function __construct()
    {
        echo 'Hi there!';
    }

    public function getCurrentWorkplace(): array
    {
        return [
            'workplace' => [
                'company' => 'mLearn',
                'position' => 'Backend developer'         
            ]
        ];
    }

    public function getKnowledge(): array
    {
        return [
            'programmingLanguages' => [
                PHP::class,
                Javascript::class,
                Java::class,
            ],

            'frameworks' => [
                Laravel::class,
                VueJS::class,
                React::class,
            ],

            'devOps' => [
                AWS::class,
                Docker::class,
            ]
        ];
    }

    public function getFutureGoal(): string
    {
        return 'To learn, always';
    }
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published
0