Skip to content
View tomsjac's full-sized avatar

Block or report tomsjac

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
tomsjac/README.md
<?php
class Tomsjac
{
    public function __construct(
        private string $fullName = "Thomas Jacquey",
        private array $roles = ['Chef de projet', 'Lead Développeur', 'Développeur'],
        private array $skills = ['PHP', 'Laravel', 'Docker', 'Gitlab', 'Sql', 'VueJs'],
    ) {}

    public function display(): string
    {
        $greetingMessage = <<<HELLO
            Bonjour! 
            Je m'appelle {$this->fullName}.
	        Je suis un {$this->roles[array_rand($this->roles)]}
            HELLO;

        return  $greetingMessage . PHP_EOL;
    }

    public function experience(): array
    {
        return [
            [
                'dates' => ['start' => '2009-01-01' , 'end' => null],
                'company' => 'Plus que PRO',
                'job' => 'Lead développeur'
            ],
            [
                'dates' => ['start' => '2010-01-01' , 'end' => '2019-01-01'],
                'company' => 'WebCD',
                'job' => 'Chef de projet technique'
            ],
            [
                'dates' => ['start' => '2006-07-01' , 'end' => '2009-12-31'],
                'company' => 'WebCD',
                'job' => 'Développeur PHP extranet'
            ],
            [
                'dates' => ['start' => '2003-09-01' , 'end' => '2006-05-31'],
                'company' => 'E-Maginair',
                'job' => 'Développeur Web'
            ],
        ];

    }

    public function links(): array
    {
        return [
            'portfolio' => 'https://wwww.tomsjac.info',
            'twitter' => '@tomsjac',
            'linkedin' => 'https://fr.linkedin.com/in/tomsjac'
        ];
        
    }
}

Popular repositories Loading

  1. proxyNoAds proxyNoAds Public

    Javascript pour filtrer les pubs

    JavaScript 1

  2. deploy-compare-git deploy-compare-git Public

    Permet de comparer 2 branches Git pour le déploiment, si le push to deploy n'est pas en place

    Shell

  3. tomsjac.info tomsjac.info Public

    Portfolio de Thomas Jacquey - Lead Dev PHP

    Vue

  4. just-packages just-packages Public

    Just get the libraries you need

    CSS

  5. api-skeleton api-skeleton Public

    API WITH JSONP STARTER

    PHP

  6. resume.tomsjac.info resume.tomsjac.info Public