Completed
Push — development ( 57519a...da4976 )
by Fabian
02:29
created
src/app/code/community/IntegerNet/Anonymizer/Model/Anonymizer.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
         $this->_updater->setShowProgress($showProgress);
53 53
     }
54 54
     /**
55
-     * @param $steps How often progress output should be refreshed (default is 1 = after every entity update; example: 10 = every 10 entity updates)
55
+     * @param integer $steps How often progress output should be refreshed (default is 1 = after every entity update; example: 10 = every 10 entity updates)
56 56
      */
57 57
     public function setProgressSteps($steps)
58 58
     {
Please login to merge, or discard this patch.
src/app/code/community/IntegerNet/Anonymizer/Model/Bridge/Iterator.php 1 patch
Doc Comments   +5 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,6 +69,10 @@  discard block
 block discarded – undo
69 69
     {
70 70
         $this->_iteration = $iteration;
71 71
     }
72
+
73
+    /**
74
+     * @param integer $offset
75
+     */
72 76
     public function setIterationOffset($offset)
73 77
     {
74 78
         $this->_iterationOffset = $offset;
@@ -77,7 +81,7 @@  discard block
 block discarded – undo
77 81
     /**
78 82
      * Returns raw data from database
79 83
      *
80
-     * @return mixed
84
+     * @return string[]
81 85
      */
82 86
     function getRawData()
83 87
     {
Please login to merge, or discard this patch.
code/community/IntegerNet/Anonymizer/Test/Model/Bridge/Entity/Abstract.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -55,6 +55,7 @@
 block discarded – undo
55 55
     /**
56 56
      * @param $id
57 57
      * @param $bridge
58
+     * @param string $idField
58 59
      * @return mixed
59 60
      */
60 61
     protected function _loadEntityByCollection($idField, $id, $bridge)
Please login to merge, or discard this patch.
test/IntegerNet/Anonymizer/Mock/CollectionMock.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     /**
57 57
      * Returns total size of collection
58 58
      *
59
-     * @return mixed
59
+     * @return integer
60 60
      */
61 61
     function getSize()
62 62
     {
Please login to merge, or discard this patch.