Passed
Pull Request — master (#103)
by Alexander
03:37
created
Classes/Domain/Model/Printer.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
  * @subpackage dlf
20 20
  * @access public
21 21
  */
22
-class Printer extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
23
-{
22
+class Printer extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
24 23
     /**
25 24
      * @var string
26 25
      */
Please login to merge, or discard this patch.
Classes/Domain/Model/Mail.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
  * @subpackage dlf
20 20
  * @access public
21 21
  */
22
-class Mail extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
23
-{
22
+class Mail extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
24 23
     /**
25 24
      * @var string
26 25
      */
Please login to merge, or discard this patch.
Classes/Domain/Model/Collection.php 2 patches
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
  * @subpackage dlf
20 20
  * @access public
21 21
  */
22
-class Collection extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
23
-{
22
+class Collection extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
24 23
     /**
25 24
      * @var int
26 25
      */
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      *
62 62
      * @var \TYPO3\CMS\Extbase\Domain\Model\FileReference
63 63
      */
64
-    protected $thumbnail = null;
64
+    protected $thumbnail = NULL;
65 65
 
66 66
     /**
67 67
      * @var int
Please login to merge, or discard this patch.
Classes/Domain/Model/ActionLog.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,8 +19,7 @@
 block discarded – undo
19 19
  * @subpackage dlf
20 20
  * @access public
21 21
  */
22
-class ActionLog extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity
23
-{
22
+class ActionLog extends \TYPO3\CMS\Extbase\DomainObject\AbstractEntity {
24 23
     /**
25 24
      * @var int
26 25
      */
Please login to merge, or discard this patch.
Classes/Domain/Repository/LibraryRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace Kitodo\Dlf\Domain\Repository;
14 14
 
15
-class LibraryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16
-{
15
+class LibraryRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
17 16
 
18 17
 }
Please login to merge, or discard this patch.
Classes/Domain/Repository/MailRepository.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -15,11 +15,9 @@
 block discarded – undo
15 15
 use TYPO3\CMS\Core\Utility\GeneralUtility;
16 16
 use TYPO3\CMS\Extbase\Persistence\Generic\Typo3QuerySettings;
17 17
 
18
-class MailRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
19
-{
18
+class MailRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
20 19
 
21
-    public function findAllWithPid($pid)
22
-    {
20
+    public function findAllWithPid($pid) {
23 21
         /** @var Typo3QuerySettings $querySettings */
24 22
         $querySettings = GeneralUtility::makeInstance(Typo3QuerySettings::class);
25 23
 
Please login to merge, or discard this patch.
Classes/Domain/Repository/StructureRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace Kitodo\Dlf\Domain\Repository;
14 14
 
15
-class StructureRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16
-{
15
+class StructureRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
17 16
 
18 17
 }
19 18
\ No newline at end of file
Please login to merge, or discard this patch.
Classes/Domain/Repository/PrinterRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace Kitodo\Dlf\Domain\Repository;
14 14
 
15
-class PrinterRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16
-{
15
+class PrinterRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
17 16
 
18 17
 }
Please login to merge, or discard this patch.
Classes/Domain/Repository/SolrCoreRepository.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
 
13 13
 namespace Kitodo\Dlf\Domain\Repository;
14 14
 
15
-class SolrCoreRepository extends \TYPO3\CMS\Extbase\Persistence\Repository
16
-{
15
+class SolrCoreRepository extends \TYPO3\CMS\Extbase\Persistence\Repository {
17 16
 
18 17
 }
19 18
\ No newline at end of file
Please login to merge, or discard this patch.