Rapsys Git
/
airbundle
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Remove donate, link and profile
[airbundle]
/
Entity
/
Snippet.php
diff --git
a/Entity/Snippet.php
b/Entity/Snippet.php
index 28c7c1cdc0e6912d2b6243eddd0710da5dd6d87f..ee5b262e78f600007529b2d12b5782463324ec05 100644
(file)
--- a/
Entity/Snippet.php
+++ b/
Entity/Snippet.php
@@
-96,6
+96,7
@@
class Snippet {
* Constructor
*/
public function __construct() {
* Constructor
*/
public function __construct() {
+ //Set defaults
$this->description = null;
$this->class = null;
$this->short = null;
$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->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
*
/**
* Set rate
*
- * @param
string
$rate
+ * @param
int
$rate
*
* @return Snippet
*/
*
* @return Snippet
*/
- public function setRate(?
string
$rate): Snippet {
+ public function setRate(?
int
$rate): Snippet {
$this->rate = $rate;
return $this;
$this->rate = $rate;
return $this;
@@
-220,9
+224,9
@@
class Snippet {
/**
* Get rate
*
/**
* Get rate
*
- * @return
string
+ * @return
int
*/
*/
- public function getRate(): ?
string
{
+ public function getRate(): ?
int
{
return $this->rate;
}
return $this->rate;
}
@@
-233,7
+237,7
@@
class Snippet {
*
* @return User
*/
*
* @return User
*/
- public function setHat(bool $hat): Snippet {
+ public function setHat(
?
bool $hat): Snippet {
$this->hat = $hat;
return $this;
$this->hat = $hat;
return $this;
@@
-244,7
+248,7
@@
class Snippet {
*
* @return bool
*/
*
* @return bool
*/
- public function getHat(): bool {
+ public function getHat():
?
bool {
return $this->hat;
}
/**
return $this->hat;
}
/**