Skip to content

Latest commit

 

History

History
42 lines (36 loc) · 777 Bytes

File metadata and controls

42 lines (36 loc) · 777 Bytes
<?php

namespace AshBaker;

class About extends Me
{
    public function getCurrentWorkplace()
    {
        return [
            'workplace' => [
                'company' => 'Qquicker',
                'position' => 'Product Owner'         
            ]
        ];
    }

    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.';
    }
}

Credits: ashbakernz

Last Edited on: 30/08/2020