for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Smoqadam\Input;
use Smoqadam\Telegram;
class TextMessageContent {
public
$message_text,
Only declaring a single property per statement allows you to later on add doc comments more easily.
It is also recommended by PSR2, so it is a common style that many people expect.
$message_text
The PSR-2 coding standard requires that all properties in a class have their visibility explicitly declared. If you declare a property using
class A { var $property; }
the property is implicitly global.
To learn more about the PSR-2, please see the PHP-FIG site on the PSR-2.
$parse_mode,
$disable_web_page_preview;
public function __construct($message_text, $parse_mode = Telegram::PARSE_MARKDOWN, $disable_web_page_preview = false) {
$this->message_text = $message_text;
$this->parse_mode = $parse_mode;
$this->disable_web_page_preview = $disable_web_page_preview;
}
Only declaring a single property per statement allows you to later on add doc comments more easily.
It is also recommended by PSR2, so it is a common style that many people expect.