This repository has been archived by the owner on Jan 29, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 27
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of git://github.com/zendframework/zf2 into string
- Loading branch information
80 parents
5c607c9
+
3463608
+
a990d75
+
ed0260a
+
40ce9ee
+
540e95d
+
a1f3efa
+
b138336
+
0ac8011
+
498f096
+
a002c09
+
a72d069
+
d696070
+
95b016c
+
f72f2a8
+
63f9aa4
+
c62eb22
+
56ff1e4
+
17753e6
+
261ddba
+
9c23ce8
+
d2ea716
+
8a38d20
+
29c3c53
+
9681f39
+
7dc76e1
+
7e1a689
+
f52efc3
+
5400ef9
+
2de31e5
+
5ef1929
+
5d57927
+
fb86f9e
+
a0d3c0d
+
754d50b
+
9ae8ef7
+
80bb476
+
7a4072e
+
1b4e215
+
9e453d7
+
1f0f6c3
+
512d4f8
+
702eefc
+
1f67b00
+
7233001
+
b38977d
+
ce0c75d
+
6a82230
+
215e77c
+
7e16a91
+
2493ed4
+
7ab2816
+
3d2db08
+
6fea908
+
aad063e
+
06319a5
+
aee1ae3
+
412f870
+
9b0f1d4
+
e8236b3
+
3e482af
+
84d85f9
+
2edbf66
+
7b83fea
+
ae75c15
+
56429a2
+
4244857
+
163015b
+
fd694bc
+
a17a889
+
6aea729
+
1946426
+
0177483
+
27a94da
+
8afdcae
+
8e4ac91
+
d060a98
+
725a039
+
4dc194c
+
246b9e4
commit 8e7f807
Showing
95 changed files
with
999 additions
and
1,054 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
|
||
/** | ||
* Runtime Exception | ||
* | ||
* | ||
* @category Zend | ||
* @package Zend_ModuleManager | ||
* @subpackage Exception | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ModuleManager | ||
*/ | ||
|
||
namespace Zend\ModuleManager\Feature; | ||
|
||
use Zend\Console\Adapter\AdapterInterface; | ||
|
||
/** | ||
* @category Zend | ||
* @package Zend_ModuleManager | ||
* @subpackage Feature | ||
*/ | ||
interface ConsoleBannerProviderInterface | ||
{ | ||
/** | ||
* Returns a string containing a banner text, that describes the module and/or the application. | ||
* The banner is shown in the console window, when the user supplies invalid command-line parameters or invokes | ||
* the application with no parameters. | ||
* | ||
* The method is called with active Zend\Console\Adapter\AdapterInterface that can be used to directly access Console and send | ||
* output. | ||
* | ||
* @param AdapterInterface $console | ||
* @return string|null | ||
*/ | ||
public function getConsoleBanner(AdapterInterface $console); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ModuleManager | ||
*/ | ||
|
||
namespace Zend\ModuleManager\Feature; | ||
|
||
use Zend\Console\Adapter\AdapterInterface; | ||
|
||
/** | ||
* @category Zend | ||
* @package Zend_ModuleManager | ||
* @subpackage Feature | ||
*/ | ||
interface ConsoleUsageProviderInterface | ||
{ | ||
/** | ||
* Returns an array or a string containing usage information for this module's Console commands. | ||
* The method is called with active Zend\Console\Adapter\AdapterInterface that can be used to directly access | ||
* Console and send output. | ||
* | ||
* If the result is a string it will be shown directly in the console window. | ||
* If the result is an array, its contents will be formatted to console window width. The array must | ||
* have the following format: | ||
* | ||
* return array( | ||
* 'Usage information line that should be shown as-is', | ||
* 'Another line of usage info', | ||
* | ||
* '--parameter' => 'A short description of that parameter', | ||
* '-another-parameter' => 'A short description of another parameter', | ||
* ... | ||
* ) | ||
* | ||
* @param AdapterInterface $console | ||
* @return array|string|null | ||
*/ | ||
public function getConsoleUsage(AdapterInterface $console); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ModuleManager | ||
*/ | ||
|
||
namespace Zend\ModuleManager\Feature; | ||
|
||
/** | ||
* @category Zend | ||
* @package Zend_ModuleManager | ||
* @subpackage Feature | ||
*/ | ||
interface FilterProviderInterface | ||
{ | ||
/** | ||
* Expected to return \Zend\ServiceManager\Config object or array to | ||
* seed such an object. | ||
* | ||
* @return array|\Zend\ServiceManager\Config | ||
*/ | ||
public function getFilterConfig(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
<?php | ||
/** | ||
* Zend Framework (http://framework.zend.com/) | ||
* | ||
* @link http://github.com/zendframework/zf2 for the canonical source repository | ||
* @copyright Copyright (c) 2005-2012 Zend Technologies USA Inc. (http://www.zend.com) | ||
* @license http://framework.zend.com/license/new-bsd New BSD License | ||
* @package Zend_ModuleManager | ||
*/ | ||
|
||
namespace Zend\ModuleManager\Feature; | ||
|
||
/** | ||
* @category Zend | ||
* @package Zend_ModuleManager | ||
* @subpackage Feature | ||
*/ | ||
interface FormElementProviderInterface | ||
{ | ||
/** | ||
* Expected to return \Zend\ServiceManager\Config object or array to | ||
* seed such an object. | ||
* | ||
* @return array|\Zend\ServiceManager\Config | ||
*/ | ||
public function getFormElementConfig(); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.