-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
patch_fature_to_actions: add label and colors to actions as well so u…
…ser can dinamically change its behavior
- Loading branch information
Showing
2 changed files
with
49 additions
and
5 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
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,11 +24,11 @@ | |
* @author Antonio Ramirez <[email protected]> | ||
* @package Da\QrCode\Component | ||
* | ||
* @method QrCode useForegroundColor(integer $red, integer $green, integer $blue) | ||
* @method QrCode useBackgroundColor(integer $red, integer $green, integer $blue) | ||
* @method QrCode useEncoding(string $encoding) | ||
* @method QrCode useWriter(WriterInterface $writer) | ||
* @method QrCode useLogo(string $logo) | ||
* @method QrCode setForegroundColor(integer $red, integer $green, integer $blue, integer $alpha) | ||
* @method QrCode setBackgroundColor(integer $red, integer $green, integer $blue) | ||
* @method QrCode setEncoding(string $encoding) | ||
* @method QrCode setWriter(WriterInterface $writer) | ||
* @method QrCode setLogo(string $logo) | ||
* @method QrCode setText(string $text) | ||
* @method QrCode setSize(integer $size) | ||
* @method QrCode setLogoWidth(integer $width) | ||
|
@@ -75,6 +75,7 @@ class QrCodeComponent extends Component | |
* 'r' => 0, // RED | ||
* 'g' => 0, // GREEN | ||
* 'b' => 0 // BLUE | ||
* 'a => 100 // ALPHA | ||
* ] | ||
* ``` | ||
*/ | ||
|