Browse Source

Removed unused methods.

xaav 13 years ago
parent
commit
1c73f703ae
1 changed files with 0 additions and 10 deletions
  1. 0 10
      src/Packagist/WebBundle/Repository/Repository/GitRepository.php

+ 0 - 10
src/Packagist/WebBundle/Repository/Repository/GitRepository.php

@@ -35,11 +35,6 @@ class GitRepository implements RepositoryInterface
         return json_decode(file_get_contents('http://github.com/api/v2/json/repos/show/'.$this->owner.'/'.$this->repository.'/tags'), true);
     }
 
-    public function getOwner()
-    {
-        return $this->owner;
-    }
-
     public function getSource()
     {
         return array('type' => 'git', 'url' => $this->getUrl());
@@ -50,11 +45,6 @@ class GitRepository implements RepositoryInterface
         return 'http://github.com/'.$this->owner.'/'.$this->repository.'.git';
     }
 
-    public function getRepository()
-    {
-        return $this->repository;
-    }
-
     public function getDist($tag)
     {
         $repoData = $this->getRepoData();