Skip to content

Commit

Permalink
Merge pull request #2 from mvenghaus/main
Browse files Browse the repository at this point in the history
little fixes
  • Loading branch information
ngarnier authored Feb 22, 2021
2 parents 3892084 + e32c460 commit 9100928
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Api/Data/SubscriberQueueInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public function getSubscriberId();
/**
* Get property
*
* @return String
* @return array
*/
public function getProperty();

Expand Down Expand Up @@ -105,7 +105,7 @@ public function setSubscriberId($subscriberId);
/**
* Set property
*
* @param Int $property
* @param array $property
* @return \Mailjet\Mailjet\Api\Data\SubscriberQueueInterface
*/
public function setProperty($property);
Expand Down
4 changes: 2 additions & 2 deletions Model/SubscriberQueue.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function getSubscriberId()
/**
* Get property
*
* @return String
* @return array
*/
public function getProperty()
{
Expand Down Expand Up @@ -114,7 +114,7 @@ public function setSubscriberId($subscriberId)
/**
* Set property
*
* @param Int $property
* @param array $property
* @return \Mailjet\Mailjet\Api\Data\SubscriberQueueInterface
*/
public function setProperty($property)
Expand Down
2 changes: 1 addition & 1 deletion etc/db_schema.xml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
</table>
<table name="mailjet_subscriber_queue" resource="default" engine="innodb" comment="Mailjet Subscriber Queue">
<column xsi:type="int" name="subscriber_id" padding="10" unsigned="true" nullable="false" identity="true" comment="Subscriber Id"/>
<column xsi:type="varchar" name="property" nullable="false" length="255" comment="Subscriber property"/>
<column xsi:type="text" name="property" nullable="false" comment="Subscriber property"/>
<column xsi:type="varchar" name="email" nullable="false" length="255" comment="Subscriber Email"/>
<column xsi:type="varchar" name="name" nullable="false" length="255" comment="Name Email"/>
<column xsi:type="varchar" name="action" nullable="false" length="32" comment="Subscriber Action"/>
Expand Down

0 comments on commit 9100928

Please sign in to comment.