Add missing packages

This commit is contained in:
Damian Mooyman 2015-08-24 16:15:38 +12:00
parent d0f94b5363
commit 4a011303b9
10 changed files with 34 additions and 5 deletions

View File

@ -1,13 +1,16 @@
<?php
/**
* @package framework
* @subpackage admin
*/
/**
* LeftAndMain is the parent class of all the two-pane views in the CMS.
* If you are wanting to add more areas to the CMS, you can do it by subclassing LeftAndMain.
*
* This is essentially an abstract class which should be subclassed.
* See {@link CMSMain} for a good example.
*
* @package framework
* @subpackage admin
*/
class LeftAndMain extends Controller implements PermissionProvider {

View File

@ -10,6 +10,9 @@
* @todo A getter for cookies that haven't been sent to the browser yet
* @todo Tests / a way to set the state without hacking with $_COOKIE
* @todo Store the meta information around cookie setting (path, domain, secure, etc)
*
* @package framework
* @subpackage misc
*/
class CookieJar implements Cookie_Backend {

View File

@ -4,6 +4,9 @@
* The Cookie_Backend interface for use with `Cookie::$inst`.
*
* See Cookie_DefaultBackend and Cookie
*
* @package framework
* @subpackage misc
*/
interface Cookie_Backend {

View File

@ -13,6 +13,9 @@
*
* WARNING: This class is experimental and designed specifically for use pre-startup in main.php
* It will likely be heavily refactored before the release of 3.2
*
* @package framework
* @subpackage misc
*/
class ErrorControlChain {
public static $fatal_errors = null; // Initialised after class definition

View File

@ -9,6 +9,9 @@
*
* WARNING: This class is experimental and designed specifically for use pre-startup in main.php
* It will likely be heavily refactored before the release of 3.2
*
* @package framework
* @subpackage misc
*/
class ParameterConfirmationToken {

View File

@ -4,6 +4,9 @@
* Generic PhpUnitWrapper.
* Originally intended for use with Composer based installations, but will work
* with any fully functional autoloader.
*
* @package framework
* @subpackage dev
*/
class PhpUnitWrapper_Generic extends PhpUnitWrapper {

View File

@ -5,6 +5,9 @@
*
* By default streams unbuffered data, but seek(), rewind(), or numRecords() will force the statement to
* buffer itself and sacrifice any potential performance benefit.
*
* @package framework
* @subpackage model
*/
class MySQLStatement extends SS_Query {

View File

@ -1,11 +1,14 @@
<?php
/**
* @package framework
* @subpackage model
*/
/**
* Object representing a SQL SELECT query.
* The various parts of the SQL query can be manipulated individually.
*
* @package framework
* @subpackage model
* @deprecated since version 4.0
*/
class SQLQuery extends SQLSelect {

View File

@ -2,6 +2,8 @@
/**
* Provides a security interface functionality within the cms
* @package framework
* @subpackage security
*/
class CMSSecurity extends Security {

View File

@ -4,6 +4,9 @@ namespace SilverStripe\Framework\Injector;
/**
* A factory which is used for creating service instances.
*
* @package framework
* @subpackage injector
*/
interface Factory {