<?php

  namespace Piták\Roman;

  use Blog, About;

  class Me extends Programmer
  {
      /** @var string */
      protected $email = 'roman@pitak.net';

      /**
       * Opens a new browser tab with my GitHub profile.
       */
      public function redirectToGitHub()
      {
          $this->redirect('https://github.com/romanpitak');
      }
  }