1
0
Fork 0
mirror of https://github.com/composer/composer synced 2025-05-11 09:32:55 +00:00

Update naming of repositories

This commit is contained in:
Jordi Boggiano 2011-04-17 23:32:53 +02:00
parent 6dbec8718d
commit 3da43e751d
3 changed files with 12 additions and 12 deletions

View file

@ -0,0 +1,21 @@
<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
* Jordi Boggiano <j.boggiano@seld.be>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Composer\Repository;
/**
* @author Nils Adermann <naderman@naderman.de>
*/
interface RepositoryInterface extends \Countable
{
function getPackages();
}