Completed
Push — master ( fb47e2...88a025 )
by Massimiliano
05:02
created
Entity/Transaction.php 1 patch
Doc Comments   +12 added lines patch added patch discarded remove patch
@@ -74,6 +74,9 @@  discard block
 block discarded – undo
74 74
      */
75 75
     protected $response;
76 76
 
77
+    /**
78
+     * @param integer $amount
79
+     */
77 80
     public function __construct($amount = null)
78 81
     {
79 82
         $this->amount = $amount;
@@ -85,6 +88,9 @@  discard block
 block discarded – undo
85 88
         return $this->id;
86 89
     }
87 90
 
91
+    /**
92
+     * @param \DateTime $start
93
+     */
88 94
     public function setStart(?\DateTime $start): self
89 95
     {
90 96
         $this->start = $start;
@@ -97,6 +103,9 @@  discard block
 block discarded – undo
97 103
         return $this->start;
98 104
     }
99 105
 
106
+    /**
107
+     * @param \DateTime $end
108
+     */
100 109
     public function setEnd(?\DateTime $end): self
101 110
     {
102 111
         $this->end = $end;
@@ -109,6 +118,9 @@  discard block
 block discarded – undo
109 118
         return $this->end;
110 119
     }
111 120
 
121
+    /**
122
+     * @param integer $status
123
+     */
112 124
     public function setStatus(?int $status): ?int
113 125
     {
114 126
         $this->status = $status;
Please login to merge, or discard this patch.