/**
  * Constructor
  *
  * @param GitViews $view The GitViews
  */
 public function __construct(GitViews $view)
 {
     parent::__construct();
     $this->view = $view;
 }
 /**
  * Constructor
  *
  * @param GitViews $view The GitViews
  */
 public function __construct($lastPushes, Git_GitRepositoryUrlManager $url_manager)
 {
     parent::__construct();
     $this->lastPushes = $lastPushes;
     $this->url_manager = $url_manager;
 }
 /**
  * Constructor
  *
  * @param GitViews $view The GitViews
  */
 public function __construct(GitViews $view, $lastPushes)
 {
     parent::__construct();
     $this->view = $view;
     $this->lastPushes = $lastPushes;
 }