Skip to content

Instantly share code, notes, and snippets.

@caionorder
Created July 9, 2020 18:03
Show Gist options
  • Save caionorder/245a98c1a81bd791a0c9a3b19f875157 to your computer and use it in GitHub Desktop.
Save caionorder/245a98c1a81bd791a0c9a3b19f875157 to your computer and use it in GitHub Desktop.
<?php

namespace CaioNorder;

class About extends Me
{
    public function getCurrentWorkplace()
    {
        return [
            'workplace' => [
                'company' => '**********',
                'position' => 'Software Engineer'         
            ]
        ];
    }

    public function getDailyKnowledge()
    {
        return [
            Php::class,
            Javascript::class,
            Laravel::class,
            CakePHP::class,
            NodeJs::class,            
            DenoJS::class,
            Angular::class,
            ReactNative::class,
            DigitalOcean::class,
            Aws::class,
        ];
    }

    public function getFutureGoal()
    {
        return 'To contribute to open source.';
    }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment