1
0
Fork 0
composer/src/Composer/Repository/RepositoryInterface.php

22 lines
438 B
PHP
Raw Normal View History

<?php
/*
* This file is part of Composer.
*
* (c) Nils Adermann <naderman@naderman.de>
2011-04-16 12:42:35 +00:00
* 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.
*/
2011-04-17 21:32:53 +00:00
namespace Composer\Repository;
/**
* @author Nils Adermann <naderman@naderman.de>
*/
interface RepositoryInterface extends \Countable
{
function getPackages();
}