Skip to content
  • This project
    • Loading...
  • Sign in

Yashwant / hdfc

Go to a project
Toggle navigation
Toggle navigation pinning
  • Projects
  • Groups
  • Snippets
  • Help
  • Project
  • Activity
  • Repository
  • Graphs
  • Network
  • Create a new issue
  • Commits
  • Issue Boards
  • Files
  • Commits
  • Network
  • Compare
  • Branches
  • Tags
Switch branch/tag
  • hdfc
  • application
  • public
  • siteDB
  • libraries
  • di
  • Item.int.php
  • Manish Mihsra's avatar
    Deleted unwanted files · 09d1b760
    Manish Mihsra committed 2018-02-28 12:58:59 +0000
    09d1b760
Item.int.php 354 Bytes
Raw Blame History Permalink
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26
<?php
/* vim: set expandtab sw=4 ts=4 sts=4: */
/**
 * Holds the PMA\DI\Item class
 *
 * @package PMA
 */

namespace PMA\DI;

/**
 * Interface Item
 *
 * @package PMA\DI
 */
interface Item
{

    /**
     * Get a value from the item
     *
     * @param array $params Parameters
     * @return mixed
     */
    public function get($params = array());
}