@@ -740,11 +740,11 @@ |
||
| 740 | 740 | * Signal that is called for post-processing content data send to the server for update. |
| 741 | 741 | * |
| 742 | 742 | * @param Content $contentObject |
| 743 | - * @param $fieldNameAndPath |
|
| 743 | + * @param string $fieldNameAndPath |
|
| 744 | 744 | * @param $contentData |
| 745 | - * @param $counter |
|
| 746 | - * @param $savingBehavior |
|
| 747 | - * @param $language |
|
| 745 | + * @param integer $counter |
|
| 746 | + * @param string $savingBehavior |
|
| 747 | + * @param integer $language |
|
| 748 | 748 | * @return ProcessContentDataSignalArguments |
| 749 | 749 | * @signal |
| 750 | 750 | */ |
@@ -94,7 +94,7 @@ |
||
| 94 | 94 | * |
| 95 | 95 | * @param Content $content |
| 96 | 96 | * @param string $target |
| 97 | - * @return bool |
|
| 97 | + * @return boolean|null |
|
| 98 | 98 | */ |
| 99 | 99 | public function processCopy(Content $content, $target) |
| 100 | 100 | { |
@@ -385,7 +385,7 @@ |
||
| 385 | 385 | /** |
| 386 | 386 | * Return the properties of this object. |
| 387 | 387 | * |
| 388 | - * @return array |
|
| 388 | + * @return string[] |
|
| 389 | 389 | */ |
| 390 | 390 | public function toFields() |
| 391 | 391 | { |
@@ -271,7 +271,7 @@ discard block |
||
| 271 | 271 | * Update a content with new information. |
| 272 | 272 | * |
| 273 | 273 | * @param Content $content |
| 274 | - * @param $language |
|
| 274 | + * @param integer $language |
|
| 275 | 275 | * @return bool |
| 276 | 276 | */ |
| 277 | 277 | public function localize($content, $language) |
@@ -352,6 +352,7 @@ discard block |
||
| 352 | 352 | * Copy a content within this repository. |
| 353 | 353 | * |
| 354 | 354 | * @param Content $content |
| 355 | + * @param string $target |
|
| 355 | 356 | * @return bool |
| 356 | 357 | */ |
| 357 | 358 | public function copy($content, $target) |
@@ -504,7 +505,7 @@ discard block |
||
| 504 | 505 | /** |
| 505 | 506 | * Sets the default query settings to be used in this repository |
| 506 | 507 | * |
| 507 | - * @param QuerySettingsInterface $defaultQuerySettings The query settings to be used by default |
|
| 508 | + * @param \Fab\Vidi\Persistence\QuerySettings $defaultQuerySettings The query settings to be used by default |
|
| 508 | 509 | * @throws \BadMethodCallException |
| 509 | 510 | * @return void |
| 510 | 511 | * @api |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | * |
| 82 | 82 | * @param string $tableName |
| 83 | 83 | * @param string $fieldName |
| 84 | - * @return array |
|
| 84 | + * @return string[] |
|
| 85 | 85 | */ |
| 86 | 86 | protected function checkRelationManyToMany($tableName, $fieldName) |
| 87 | 87 | { |
@@ -115,7 +115,7 @@ discard block |
||
| 115 | 115 | * @param string $tableName |
| 116 | 116 | * @param string $fieldName |
| 117 | 117 | * @param string $relationType |
| 118 | - * @return array |
|
| 118 | + * @return string[] |
|
| 119 | 119 | */ |
| 120 | 120 | protected function checkRelationOf($tableName, $fieldName, $relationType) |
| 121 | 121 | { |
@@ -109,7 +109,7 @@ |
||
| 109 | 109 | * |
| 110 | 110 | * @param Content $object |
| 111 | 111 | * @param int $language |
| 112 | - * @return string |
|
| 112 | + * @return boolean |
|
| 113 | 113 | */ |
| 114 | 114 | public function hasLocalization(Content $object, $language) |
| 115 | 115 | { |
@@ -242,7 +242,7 @@ |
||
| 242 | 242 | /** |
| 243 | 243 | * Returns the current pid. |
| 244 | 244 | * |
| 245 | - * @return bool |
|
| 245 | + * @return integer |
|
| 246 | 246 | */ |
| 247 | 247 | public function getCurrentPid() |
| 248 | 248 | { |
@@ -290,7 +290,7 @@ discard block |
||
| 290 | 290 | * 'bar' => \TYPO3\CMS\Extbase\Persistence\QueryInterface::ORDER_DESCENDING |
| 291 | 291 | * ) |
| 292 | 292 | * |
| 293 | - * @return array |
|
| 293 | + * @return integer |
|
| 294 | 294 | * @api |
| 295 | 295 | */ |
| 296 | 296 | public function getOrderings() |
@@ -483,7 +483,7 @@ discard block |
||
| 483 | 483 | * Returns a like criterion used for matching objects against a query |
| 484 | 484 | * |
| 485 | 485 | * @param string $propertyName The name of the property to compare against |
| 486 | - * @param mixed $operand The value to compare with |
|
| 486 | + * @param string $operand The value to compare with |
|
| 487 | 487 | * @param boolean $caseSensitive Whether the matching should be done case-sensitive |
| 488 | 488 | * @return \TYPO3\CMS\Extbase\Persistence\Generic\Qom\ComparisonInterface |
| 489 | 489 | * @api |
@@ -231,7 +231,7 @@ discard block |
||
| 231 | 231 | /** |
| 232 | 232 | * Parses the query and returns the SQL statement parts. |
| 233 | 233 | * |
| 234 | - * @param QueryInterface $query The query |
|
| 234 | + * @param \Fab\Vidi\Persistence\Query $query The query |
|
| 235 | 235 | * @param array &$parameters |
| 236 | 236 | * @return array The SQL statement parts |
| 237 | 237 | */ |
@@ -774,6 +774,7 @@ discard block |
||
| 774 | 774 | * @param string &$sqlString The query part with placeholders |
| 775 | 775 | * @param array $parameters The parameters |
| 776 | 776 | * @param string $tableName |
| 777 | + * @param string $sqlString |
|
| 777 | 778 | * |
| 778 | 779 | * @throws Exception |
| 779 | 780 | */ |
@@ -1071,7 +1072,7 @@ discard block |
||
| 1071 | 1072 | * |
| 1072 | 1073 | * @param SourceInterface $source The source (selector od join) |
| 1073 | 1074 | * @param array $row |
| 1074 | - * @param QuerySettingsInterface $querySettings The TYPO3 CMS specific query settings |
|
| 1075 | + * @param \Fab\Vidi\Persistence\QuerySettings $querySettings The TYPO3 CMS specific query settings |
|
| 1075 | 1076 | * @return array |
| 1076 | 1077 | */ |
| 1077 | 1078 | protected function doLanguageAndWorkspaceOverlay(SourceInterface $source, array $row, $querySettings) |