mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR Fixed phpdocs
This commit is contained in:
parent
618d24670c
commit
6af3b076be
@ -7,7 +7,7 @@
|
|||||||
* as PHP doesn't really care about types...
|
* as PHP doesn't really care about types...
|
||||||
*
|
*
|
||||||
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
|
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage injector
|
* @subpackage injector
|
||||||
* @license BSD http://silverstripe.org/BSD-license
|
* @license BSD http://silverstripe.org/BSD-license
|
||||||
*/
|
*/
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* injected
|
* injected
|
||||||
*
|
*
|
||||||
* @author marcus@silverstripe.com.au
|
* @author marcus@silverstripe.com.au
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage injector
|
* @subpackage injector
|
||||||
*
|
*
|
||||||
* @license http://silverstripe.org/bsd-license/
|
* @license http://silverstripe.org/bsd-license/
|
||||||
|
@ -7,7 +7,7 @@
|
|||||||
* as PHP doesn't really care about types...
|
* as PHP doesn't really care about types...
|
||||||
*
|
*
|
||||||
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
|
* @author Marcus Nyeholt <marcus@silverstripe.com.au>
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage injector
|
* @subpackage injector
|
||||||
* @license BSD http://silverstripe.org/BSD-license
|
* @license BSD http://silverstripe.org/BSD-license
|
||||||
*/
|
*/
|
||||||
|
@ -108,7 +108,7 @@
|
|||||||
* * A service named 'PermissionService' has been configured
|
* * A service named 'PermissionService' has been configured
|
||||||
*
|
*
|
||||||
* @author marcus@silverstripe.com.au
|
* @author marcus@silverstripe.com.au
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage injector
|
* @subpackage injector
|
||||||
* @license BSD License http://silverstripe.org/bsd-license/
|
* @license BSD License http://silverstripe.org/bsd-license/
|
||||||
*/
|
*/
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* and provides a meaning of registering community built
|
* and provides a meaning of registering community built
|
||||||
* adapters in to the installer process.
|
* adapters in to the installer process.
|
||||||
*
|
*
|
||||||
* @package installer
|
* @package framework
|
||||||
* @author Tom Rix
|
* @author Tom Rix
|
||||||
*/
|
*/
|
||||||
class DatabaseAdapterRegistry {
|
class DatabaseAdapterRegistry {
|
||||||
|
@ -5,7 +5,7 @@
|
|||||||
* It does all the specific checking for MySQLDatabase
|
* It does all the specific checking for MySQLDatabase
|
||||||
* to ensure that the configuration is setup correctly.
|
* to ensure that the configuration is setup correctly.
|
||||||
*
|
*
|
||||||
* @package sappire
|
* @package framework
|
||||||
* @subpackage model
|
* @subpackage model
|
||||||
*/
|
*/
|
||||||
class MySQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
class MySQLDatabaseConfigurationHelper implements DatabaseConfigurationHelper {
|
||||||
|
@ -31,10 +31,10 @@
|
|||||||
* This will generate a tree allowing the user to expand and contract subsections
|
* This will generate a tree allowing the user to expand and contract subsections
|
||||||
* to find the appropriate page to save to the field.
|
* to find the appropriate page to save to the field.
|
||||||
*
|
*
|
||||||
* @see {@link TreeMultiselectField} for the same implementation allowing multiple selections
|
* @see TreeMultiselectField for the same implementation allowing multiple selections
|
||||||
* @see {@link DropdownField} for a simple dropdown field.
|
* @see DropdownField for a simple dropdown field.
|
||||||
* @see {@link CheckboxSetField} for multiple selections through checkboxes.
|
* @see CheckboxSetField for multiple selections through checkboxes.
|
||||||
* @see {@link OptionsetField} for single selections via radiobuttons.
|
* @see OptionsetField for single selections via radiobuttons.
|
||||||
*
|
*
|
||||||
* @package forms
|
* @package forms
|
||||||
* @subpackage fields-relational
|
* @subpackage fields-relational
|
||||||
|
@ -3,7 +3,7 @@ require_once 'Zend/Translate.php';
|
|||||||
require_once 'zend_translate_railsyaml/library/Translate/Adapter/RailsYAML.php';
|
require_once 'zend_translate_railsyaml/library/Translate/Adapter/RailsYAML.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage i18n
|
* @subpackage i18n
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -3,7 +3,7 @@ require_once 'Zend/Locale.php';
|
|||||||
require_once 'Zend/Translate/Adapter.php';
|
require_once 'Zend/Translate/Adapter.php';
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage i18n
|
* @subpackage i18n
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ class i18nTextCollector extends Object {
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
* Builds a master string table from php and .ss template files for the module passed as the $module param
|
* Builds a master string table from php and .ss template files for the module passed as the $module param
|
||||||
* @see {@link collectFromCode} and {@link collectFromTemplate}
|
* @see collectFromCode() and collectFromTemplate()
|
||||||
*
|
*
|
||||||
* @param string $module A module's name or just 'themes'
|
* @param string $module A module's name or just 'themes'
|
||||||
* @return array $entities An array of entities found in the files that comprise the module
|
* @return array $entities An array of entities found in the files that comprise the module
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage i18n
|
* @subpackage i18n
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
* Used extensively by {@link DataList}.
|
* Used extensively by {@link DataList}.
|
||||||
*
|
*
|
||||||
* @subpackage model
|
* @subpackage model
|
||||||
* @package sapphire
|
* @package framework
|
||||||
*/
|
*/
|
||||||
class DataQuery {
|
class DataQuery {
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
<?php
|
<?php
|
||||||
/**
|
/**
|
||||||
* @package sapphire
|
* @package framework
|
||||||
* @subpackage i18n
|
* @subpackage i18n
|
||||||
*/
|
*/
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user