-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,11 +19,7 @@ | |
namespace fproject\amqp; | ||
|
||
/** | ||
* This is the abstract base class for all form model classes of this application. | ||
* It is a customized model based on Yii CFormModel class. | ||
* All form model classes of this application should extend from this class. | ||
* @method array getMasterAttributeLabel(mixed $attribute, mixed $type) Get an item data from MasterValue text values, | ||
* make it available for label displaying in forms and views. | ||
* This is the VO class represents activity notification information. | ||
* | ||
* @author Bui Sy Nguyen <[email protected]> | ||
*/ | ||
|
@@ -43,7 +39,7 @@ class ActivityNotice { | |
/** @var mixed $content the content of activity */ | ||
public $content; | ||
|
||
/** @var mixed $oldContent the content of activity */ | ||
/** @var mixed $oldContent the content of model before notifying activity is performed */ | ||
public $oldContent; | ||
|
||
/** @var string[] $contentUpdatedFields the list of updated fields of the content */ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,7 +24,8 @@ | |
use PhpAmqpLib\Message\AMQPMessage; | ||
|
||
/** | ||
* ActivityNoticeManager provides a set of methods for sending/receiving message using PhpAmqpLib | ||
* ActivityNoticeManager provides a set of methods for sending/receiving message using | ||
* PhpAmqpLib or RabbitMQ-C client extension | ||
* | ||
* @author Bui Sy Nguyen <[email protected]> | ||
*/ | ||
|