Skip to content
Snippets Groups Projects
Commit 5b06eef4 authored by Christian Kuhn's avatar Christian Kuhn Committed by GitHub
Browse files

[TASK] styleguide: Declare all classes @internal

https://github.com/TYPO3-CMS/styleguide/pull/474

Styleguide is not API.
parent 32912607
Branches
Tags
No related merge requests found
Showing
with 40 additions and 0 deletions
......@@ -30,6 +30,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\RecordFinder;
/**
* Generate TCA for Styleguide backend (create / delete)
*
* @internal
*/
final class GeneratorCommand extends Command
{
......
......@@ -39,6 +39,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\RecordFinder;
/**
* Styleguide main backend module in the help toolbar
*
* @internal
*/
#[Controller]
final class BackendController
......
......@@ -19,5 +19,7 @@ namespace TYPO3\CMS\Styleguide;
/**
* General styleguide exception
*
* @internal
*/
class Exception extends \Exception {}
......@@ -24,6 +24,8 @@ use TYPO3\CMS\Core\Utility\GeneralUtility;
/**
* A user function rendering a type=user TCA type used in user_1
*
* @internal
*/
final class User1Element extends AbstractFormElement
{
......
......@@ -19,6 +19,8 @@ namespace TYPO3\CMS\Styleguide\Service;
/**
* Get test strings
*
* @internal
*/
final class KauderwelschService
{
......
......@@ -32,6 +32,8 @@ use TYPO3\CMS\Core\Utility\MathUtility;
/**
* Manage a page tree with all test / demo styleguide data.
*
* @internal
*/
abstract class AbstractGenerator
{
......
......@@ -19,5 +19,7 @@ namespace TYPO3\CMS\Styleguide\TcaDataGenerator;
/**
* TcaDataGenerator exception
*
* @internal
*/
class Exception extends \TYPO3\CMS\Styleguide\Exception {}
......@@ -22,6 +22,8 @@ use TYPO3\CMS\Styleguide\Service\KauderwelschService;
/**
* Implement some standard stuff
*
* @internal
*/
abstract class AbstractFieldGenerator
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Use "default" value if set in config
*
* @internal
*/
final class ConfigDefault extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=check fields
*
* @internal
*/
final class TypeCheck extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=color fields
*
* @internal
*/
final class TypeColor extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields
*
* @internal
*/
final class TypeDatetime extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields with dbType=datetime
*
* @internal
*/
final class TypeDatetimeDbTypeDatetime extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields with format=date
*
* @internal
*/
final class TypeDatetimeFormatDate extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields with format=date and dbType=date
*
* @internal
*/
final class TypeDatetimeFormatDateDbTypeDate extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -25,6 +25,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields with format=time
*
* @internal
*/
final class TypeDatetimeFormatTime extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -25,6 +25,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=datetime fields with format=timesec
*
* @internal
*/
final class TypeDatetimeFormatTimesec extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for mandatory type=datetime fields with format=date
*
* @internal
*/
final class TypeDatetimeRequiredFormatDate extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -21,6 +21,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\FieldGeneratorInterface;
/**
* Generate data for type=email fields
*
* @internal
*/
final class TypeEmail extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
......@@ -25,6 +25,8 @@ use TYPO3\CMS\Styleguide\TcaDataGenerator\RecordFinder;
/**
* Generate data for type=file fields
*
* @internal
*/
final class TypeFile extends AbstractFieldGenerator implements FieldGeneratorInterface
{
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment