Completed
Push — ezp24624-query_controller_take... ( a01899...e5adfd )
by
unknown
19:50
created
eZ/Publish/SPI/Tests/FieldType/SelectionIntegrationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Get handler with required custom field types registered.
54 54
      *
55
-     * @return Handler
55
+     * @return \eZ\Publish\SPI\Persistence\Handler|null
56 56
      */
57 57
     public function getCustomHandler()
58 58
     {
Please login to merge, or discard this patch.
eZ/Publish/SPI/Tests/FieldType/TextBlockIntegrationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Get handler with required custom field types registered.
54 54
      *
55
-     * @return Handler
55
+     * @return \eZ\Publish\SPI\Persistence\Handler|null
56 56
      */
57 57
     public function getCustomHandler()
58 58
     {
Please login to merge, or discard this patch.
eZ/Publish/SPI/Tests/FieldType/TextLineIntegrationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Get handler with required custom field types registered.
54 54
      *
55
-     * @return Handler
55
+     * @return \eZ\Publish\SPI\Persistence\Handler|null
56 56
      */
57 57
     public function getCustomHandler()
58 58
     {
Please login to merge, or discard this patch.
eZ/Publish/SPI/Tests/FieldType/UrlIntegrationTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
     /**
53 53
      * Get handler with required custom field types registered.
54 54
      *
55
-     * @return Handler
55
+     * @return \eZ\Publish\SPI\Persistence\Handler|null
56 56
      */
57 57
     public function getCustomHandler()
58 58
     {
Please login to merge, or discard this patch.
eZ/Bundle/PlatformInstallerBundle/src/Installer/DbBasedInstaller.php 1 patch
Doc Comments   +7 added lines patch added patch discarded remove patch
@@ -32,6 +32,10 @@  discard block
 block discarded – undo
32 32
         $this->output = $output;
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $source
37
+     * @param string $target
38
+     */
35 39
     protected function copyConfigurationFile($source, $target)
36 40
     {
37 41
         $fs = new Filesystem();
@@ -42,6 +46,9 @@  discard block
 block discarded – undo
42 46
         }
43 47
     }
44 48
 
49
+    /**
50
+     * @param string $file
51
+     */
45 52
     protected function runQueriesFromFile($file)
46 53
     {
47 54
         $queries = array_filter(preg_split('(;\\s*$)m', file_get_contents($file)));
Please login to merge, or discard this patch.
eZ/Publish/Core/Repository/Values/Content/Content.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -126,7 +126,7 @@
 block discarded – undo
126 126
      * If not set the initialLanguage of the content version is used.
127 127
      *
128 128
      * @param string $fieldDefIdentifier
129
-     * @param null $languageCode
129
+     * @param string $languageCode
130 130
      *
131 131
      * @return \eZ\Publish\API\Repository\Values\Content\Field|null A {@link Field} or null if nothing is found
132 132
      */
Please login to merge, or discard this patch.
Tests/DependencyInjection/Configuration/Parser/FieldType/XmlTextTest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
      * Return an array of container extensions you need to be registered for each test (usually just the container
23 23
      * extension you are testing.
24 24
      *
25
-     * @return ExtensionInterface[]
25
+     * @return EzPublishCoreExtension[]
26 26
      */
27 27
     protected function getContainerExtensions()
28 28
     {
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishRestBundle/Features/Context/RestContext.php 1 patch
Doc Comments   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -72,9 +72,7 @@  discard block
 block discarded – undo
72 72
     /**
73 73
      * Initialize class.
74 74
      *
75
-     * @param string $url    Base URL for REST calls
76 75
      * @param string $driver REST Driver to be used
77
-     * @param string $json
78 76
      */
79 77
     public function __construct(
80 78
         $driver = self::DEFAULT_DRIVER,
@@ -88,6 +86,9 @@  discard block
 block discarded – undo
88 86
         $this->setRestDriver($this->driver);
89 87
     }
90 88
 
89
+    /**
90
+     * @param string $url
91
+     */
91 92
     private function setUrl($url)
92 93
     {
93 94
         $this->url = $url;
Please login to merge, or discard this patch.
eZ/Bundle/EzPublishRestBundle/Features/Context/SubContext/EzRest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -219,7 +219,7 @@
 block discarded – undo
219 219
     /**
220 220
      * Decompose the header to get only the object type of the accept/conten-type headers.
221 221
      *
222
-     * @return false|string Decomposed string if found, false other wise
222
+     * @return string Decomposed string if found, false other wise
223 223
      */
224 224
     protected function decomposeObjectHeader($header)
225 225
     {
Please login to merge, or discard this patch.