mirror of
https://github.com/the-djmaze/snappymail.git
synced 2026-09-02 05:59:21 +03:00
v1.2.7.415
This commit is contained in:
parent
5c1e7bc676
commit
54e2645fcf
436 changed files with 407 additions and 347 deletions
44
rainloop/v/1.2.7.415/app/libraries/MailSo/Version.php
Normal file
44
rainloop/v/1.2.7.415/app/libraries/MailSo/Version.php
Normal file
|
|
@ -0,0 +1,44 @@
|
|||
<?php
|
||||
|
||||
namespace MailSo;
|
||||
|
||||
/**
|
||||
* @category MailSo
|
||||
*/
|
||||
final class Version
|
||||
{
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
const APP_VERSION = '1.0.0';
|
||||
|
||||
/**
|
||||
* @var string
|
||||
*/
|
||||
const MIME_X_MAILER = 'MailSo';
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public static function AppVersion()
|
||||
{
|
||||
return \MailSo\Version::APP_VERSION;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public static function XMailer()
|
||||
{
|
||||
return \MailSo\Version::MIME_X_MAILER.'/'.\MailSo\Version::APP_VERSION;
|
||||
}
|
||||
|
||||
/**
|
||||
* @return string
|
||||
*/
|
||||
public static function Signature()
|
||||
{
|
||||
$oPhar = new \Phar('mailso.phar');
|
||||
return $oPhar->getSignature();
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue