Skip to content

Commit

Permalink
Use https for @link annotations (JetBrains#367)
Browse files Browse the repository at this point in the history
* Replace http with https

* Replace http with https in readme
  • Loading branch information
BackEndTea authored and andrey-sokolov committed Aug 13, 2018
1 parent 97d03e7 commit db07f45
Show file tree
Hide file tree
Showing 157 changed files with 8,265 additions and 8,249 deletions.
108 changes: 54 additions & 54 deletions Core/Core.php

Large diffs are not rendered by default.

120 changes: 60 additions & 60 deletions Core/Core_c.php

Large diffs are not rendered by default.

80 changes: 40 additions & 40 deletions Core/Core_d.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
* Fatal run-time errors. These indicate errors that can not be
* recovered from, such as a memory allocation problem.
* Execution of the script is halted.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_ERROR', 1);

Expand All @@ -17,113 +17,113 @@
* is not caught by a user defined handle (see also
* <b>set_error_handler</b>), the application aborts as it
* was an <b>E_ERROR</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_RECOVERABLE_ERROR', 4096);

/**
* Run-time warnings (non-fatal errors). Execution of the script is not
* halted.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_WARNING', 2);

/**
* Compile-time parse errors. Parse errors should only be generated by
* the parser.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_PARSE', 4);

/**
* Run-time notices. Indicate that the script encountered something that
* could indicate an error, but could also happen in the normal course of
* running a script.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_NOTICE', 8);

/**
* Enable to have PHP suggest changes
* to your code which will ensure the best interoperability
* and forward compatibility of your code.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_STRICT', 2048);

/**
* Run-time notices. Enable this to receive warnings about code
* that will not work in future versions.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_DEPRECATED', 8192);

/**
* Fatal errors that occur during PHP's initial startup. This is like an
* <b>E_ERROR</b>, except it is generated by the core of PHP.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_ERROR', 16);

/**
* Warnings (non-fatal errors) that occur during PHP's initial startup.
* This is like an <b>E_WARNING</b>, except it is generated
* by the core of PHP.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_CORE_WARNING', 32);

/**
* Fatal compile-time errors. This is like an <b>E_ERROR</b>,
* except it is generated by the Zend Scripting Engine.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_ERROR', 64);

/**
* Compile-time warnings (non-fatal errors). This is like an
* <b>E_WARNING</b>, except it is generated by the Zend
* Scripting Engine.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_COMPILE_WARNING', 128);

/**
* User-generated error message. This is like an
* <b>E_ERROR</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_ERROR', 256);

/**
* User-generated warning message. This is like an
* <b>E_WARNING</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_WARNING', 512);

/**
* User-generated notice message. This is like an
* <b>E_NOTICE</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_NOTICE', 1024);

/**
* User-generated warning message. This is like an
* <b>E_DEPRECATED</b>, except it is generated in PHP code by
* using the PHP function <b>trigger_error</b>.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_USER_DEPRECATED', 16384);

/**
* All errors and warnings, as supported, except of level
* <b>E_STRICT</b> prior to PHP 5.4.0.
* @link http://php.net/manual/en/errorfunc.constants.php
* @link https://php.net/manual/en/errorfunc.constants.php
*/
define ('E_ALL', 30719);
define ('DEBUG_BACKTRACE_PROVIDE_OBJECT', 1);
Expand All @@ -142,116 +142,116 @@

/**
* system is unusable
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_EMERG', 0);

/**
* action must be taken immediately
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_ALERT', 1);

/**
* critical conditions
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_CRIT', 2);

/**
* error conditions
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_ERR', 3);

/**
* warning conditions
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_WARNING', 4);

/**
* normal, but significant, condition
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_NOTICE', 5);

/**
* informational message
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_INFO', 6);

/**
* debug-level message
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_DEBUG', 7);

/**
* kernel messages
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_KERN', 0);

/**
* generic user-level messages
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_USER', 8);

/**
* mail subsystem
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_MAIL', 16);

/**
* other system daemons
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_DAEMON', 24);

/**
* security/authorization messages (use <b>LOG_AUTHPRIV</b> instead
* in systems where that constant is defined)
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_AUTH', 32);

/**
* messages generated internally by syslogd
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_SYSLOG', 40);

/**
* line printer subsystem
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_LPR', 48);

/**
* USENET news subsystem
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_NEWS', 56);

/**
* UUCP subsystem
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_UUCP', 64);

/**
* clock daemon (cron and at)
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_CRON', 72);

/**
* security/authorization messages (private)
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_AUTHPRIV', 80);
define ('LOG_LOCAL0', 128);
Expand All @@ -265,34 +265,34 @@

/**
* include PID with each message
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_PID', 1);

/**
* if there is an error while sending data to the system logger,
* write directly to the system console
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_CONS', 2);

/**
* (default) delay opening the connection until the first
* message is logged
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_ODELAY', 4);

/**
* open the connection to the logger immediately
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_NDELAY', 8);
define ('LOG_NOWAIT', 16);

/**
* print log message also to standard error
* @link http://php.net/manual/en/network.constants.php
* @link https://php.net/manual/en/network.constants.php
*/
define ('LOG_PERROR', 32);
define ('true', true, true);
Expand Down
Loading

0 comments on commit db07f45

Please sign in to comment.