Skip to content
This repository was archived by the owner on Mar 13, 2026. It is now read-only.

Commit f9603b8

Browse files
committed
cs
1 parent 5aaa2bc commit f9603b8

File tree

3 files changed

+13
-8
lines changed

3 files changed

+13
-8
lines changed

src/lib/Zikula/Common/Content/AbstractContentFormType.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of the Zikula package.
55
*
6-
* Copyright Zikula Foundation - http://zikula.org/
6+
* Copyright Zikula Foundation - https://ziku.la/
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -24,15 +24,15 @@ abstract class AbstractContentFormType extends AbstractType
2424
use TranslatorTrait;
2525

2626
/**
27-
* @inheritDoc
27+
* {@inheritdoc}
2828
*/
2929
public function getBlockPrefix()
3030
{
3131
return 'zikula_contenttype_abstract';
3232
}
3333

3434
/**
35-
* @inheritDoc
35+
* {@inheritdoc}
3636
*/
3737
public function configureOptions(OptionsResolver $resolver)
3838
{

src/lib/Zikula/Common/Content/AbstractContentType.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,15 +3,15 @@
33
/*
44
* This file is part of the Zikula package.
55
*
6-
* Copyright Zikula Foundation - http://zikula.org/
6+
* Copyright Zikula Foundation - https://ziku.la/
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
1010
*/
1111

1212
namespace Zikula\Common\Content;
1313

14-
use \Twig_Environment;
14+
use Twig_Environment;
1515
use Symfony\Bundle\TwigBundle\Loader\FilesystemLoader;
1616
use Zikula\Common\Translator\TranslatorInterface;
1717
use Zikula\ThemeModule\Engine\Asset;
@@ -76,14 +76,14 @@ abstract class AbstractContentType implements ContentTypeInterface
7676
/**
7777
* Reference to content item instance which allows to access page data,
7878
* layout area and styling data and other information.
79-
*
79+
*
8080
* @var \Zikula\ContentModule\Entity\ContentItemEntity
8181
*/
8282
protected $entity = null;
8383

8484
/**
8585
* Reference to the data fields loaded from either default values or the entity.
86-
*
86+
*
8787
* @var array
8888
*/
8989
protected $data;

src/lib/Zikula/Common/Content/ContentTypeInterface.php

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
/*
44
* This file is part of the Zikula package.
55
*
6-
* Copyright Zikula Foundation - http://zikula.org/
6+
* Copyright Zikula Foundation - https://ziku.la/
77
*
88
* For the full copyright and license information, please view the LICENSE
99
* file that was distributed with this source code.
@@ -14,12 +14,17 @@
1414
interface ContentTypeInterface
1515
{
1616
const CATEGORY_BASIC = 'basic';
17+
1718
const CATEGORY_EXTERNAL = 'external';
19+
1820
const CATEGORY_INTEGRATION = 'integration';
21+
1922
const CATEGORY_EXPERT = 'expert';
2023

2124
const CONTEXT_VIEW = 'view';
25+
2226
const CONTEXT_EDIT = 'edit';
27+
2328
const CONTEXT_TRANSLATION = 'translation';
2429

2530
/**

0 commit comments

Comments
 (0)