]> Raphaƫl G. Git Repositories - airbundle/blobdiff - Entity/Snippet.php
Add defaults
[airbundle] / Entity / Snippet.php
index 28c7c1cdc0e6912d2b6243eddd0710da5dd6d87f..ee5b262e78f600007529b2d12b5782463324ec05 100644 (file)
@@ -96,6 +96,7 @@ class Snippet {
         * Constructor
         */
        public function __construct() {
+               //Set defaults
                $this->description = null;
                $this->class = null;
                $this->short = null;
@@ -105,6 +106,9 @@ class Snippet {
                $this->donate = null;
                $this->link = null;
                $this->profile = null;
+               $this->created = new \DateTime('now');
+               $this->updated = new \DateTime('now');
+               $this->location = null;
        }
 
        /**
@@ -207,11 +211,11 @@ class Snippet {
        /**
         * Set rate
         *
-        * @param string $rate
+        * @param int $rate
         *
         * @return Snippet
         */
-       public function setRate(?string $rate): Snippet {
+       public function setRate(?int $rate): Snippet {
                $this->rate = $rate;
 
                return $this;
@@ -220,9 +224,9 @@ class Snippet {
        /**
         * Get rate
         *
-        * @return string
+        * @return int
         */
-       public function getRate(): ?string {
+       public function getRate(): ?int {
                return $this->rate;
        }
 
@@ -233,7 +237,7 @@ class Snippet {
         *
         * @return User
         */
-       public function setHat(bool $hat): Snippet {
+       public function setHat(?bool $hat): Snippet {
                $this->hat = $hat;
 
                return $this;
@@ -244,7 +248,7 @@ class Snippet {
         *
         * @return bool
         */
-       public function getHat(): bool {
+       public function getHat(): ?bool {
                return $this->hat;
        }
        /**