Selaa lähdekoodia

ZF-10592
File was left out of previous commit for Zend_Tool project provider support


git-svn-id: http://framework.zend.com/svn/framework/standard/trunk@23234 44c647ce-9c0f-0410-b52a-842ac1e357ba

ralph 15 vuotta sitten
vanhempi
commit
92c9f4c626
1 muutettua tiedostoa jossa 31 lisäystä ja 0 poistoa
  1. 31 0
      library/Zend/Tool/Framework/Provider/Initializable.php

+ 31 - 0
library/Zend/Tool/Framework/Provider/Initializable.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Zend Framework
+ *
+ * LICENSE
+ *
+ * This source file is subject to the new BSD license that is bundled
+ * with this package in the file LICENSE.txt.
+ * It is also available through the world-wide-web at this URL:
+ * http://framework.zend.com/license/new-bsd
+ * If you did not receive a copy of the license and are unable to
+ * obtain it through the world-wide-web, please send an email
+ * to license@zend.com so we can send you a copy immediately.
+ *
+ * @category   Zend
+ * @package    Zend_Tool
+ * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ * @version    $Id: Interactable.php 20096 2010-01-06 02:05:09Z bkarwin $
+ */
+
+/**
+ * @category   Zend
+ * @package    Zend_Tool
+ * @copyright  Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
+ * @license    http://framework.zend.com/license/new-bsd     New BSD License
+ */
+interface Zend_Tool_Framework_Provider_Initializable
+{
+    public function initialize();
+}