Skip to content

Commit

Permalink
Use HTTPS instead of HTTP
Browse files Browse the repository at this point in the history
  • Loading branch information
carusogabriel committed Feb 14, 2018
1 parent aefddb1 commit ddaebb2
Show file tree
Hide file tree
Showing 8 changed files with 18 additions and 18 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ title: Contributing
# Contributing

* Coding standard for the project is [PSR-2](https://github.com/php-fig/fig-standards/blob/master/accepted/PSR-2-coding-style-guide.md)
* The project aims to follow most [object calisthenics](http://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php)
* The project aims to follow most [object calisthenics](https://www.slideshare.net/guilhermeblanco/object-calisthenics-applied-to-php)
* Any contribution must provide tests for additional introduced conditions
* Any un-confirmed issue needs a failing test case before being accepted
* Pull requests must be sent from a new hotfix/feature branch, not from `master`.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Better Reflection
[![Build Status](https://travis-ci.org/Roave/BetterReflection.svg?branch=master)](https://travis-ci.org/Roave/BetterReflection) [![Build Status](https://ci.appveyor.com/api/projects/status/github/Roave/BetterReflection?svg=true&branch=master)](https://ci.appveyor.com/project/Ocramius/betterreflection-4jx2w) [![Scrutinizer Code Quality](https://scrutinizer-ci.com/g/Roave/BetterReflection/badges/quality-score.png?b=master)](https://scrutinizer-ci.com/g/Roave/BetterReflection/?branch=master) [![Code Coverage](https://scrutinizer-ci.com/g/Roave/BetterReflection/badges/coverage.png?b=master)](https://scrutinizer-ci.com/g/Roave/BetterReflection/?branch=master) [![Latest Stable Version](https://poser.pugx.org/roave/better-reflection/v/stable)](https://packagist.org/packages/roave/better-reflection) [![License](https://poser.pugx.org/roave/better-reflection/license)](https://packagist.org/packages/roave/better-reflection)

Better Reflection is a reflection API that aims to improve and provide more
features than PHP's built-in [reflection API](http://php.net/manual/en/book.reflection.php).
features than PHP's built-in [reflection API](https://php.net/manual/en/book.reflection.php).

## Why is it better?

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
{
"name": "Marco Pivetta",
"email": "[email protected]",
"homepage": "http://ocramius.github.io/"
"homepage": "https://ocramius.github.io/"
},
{
"name": "Gary Hockin",
Expand Down
2 changes: 1 addition & 1 deletion src/Reflection/Adapter/ReflectionClassConstant.php
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public function getDocComment()
/**
* To string
*
* @link http://php.net/manual/en/reflector.tostring.php
* @link https://php.net/manual/en/reflector.tostring.php
* @return string
*/
public function __toString()
Expand Down
16 changes: 8 additions & 8 deletions src/Reflection/ReflectionClass.php
Original file line number Diff line number Diff line change
Expand Up @@ -992,7 +992,7 @@ public function getTraitAliases() : array
/**
* Gets the interfaces.
*
* @link http://php.net/manual/en/reflectionclass.getinterfaces.php
* @link https://php.net/manual/en/reflectionclass.getinterfaces.php
*
* @return ReflectionClass[] An associative array of interfaces, with keys as interface names and the array
* values as {@see ReflectionClass} objects.
Expand Down Expand Up @@ -1021,7 +1021,7 @@ public function getImmediateInterfaces() : array
/**
* Gets the interface names.
*
* @link http://php.net/manual/en/reflectionclass.getinterfacenames.php
* @link https://php.net/manual/en/reflectionclass.getinterfacenames.php
*
* @return string[] A numerical array with interface names as the values.
*/
Expand All @@ -1038,7 +1038,7 @@ function (self $interface) : string {
/**
* Checks whether the given object is an instance.
*
* @link http://php.net/manual/en/reflectionclass.isinstance.php
* @link https://php.net/manual/en/reflectionclass.isinstance.php
*
* @param object $object
*
Expand All @@ -1061,7 +1061,7 @@ public function isInstance($object) : bool
/**
* Checks whether the given class string is a subclass of this class.
*
* @link http://php.net/manual/en/reflectionclass.isinstance.php
* @link https://php.net/manual/en/reflectionclass.isinstance.php
*
*/
public function isSubclassOf(string $className) : bool
Expand All @@ -1081,7 +1081,7 @@ function (self $reflectionClass) : string {
/**
* Checks whether this class implements the given interface.
*
* @link http://php.net/manual/en/reflectionclass.implementsinterface.php
* @link https://php.net/manual/en/reflectionclass.implementsinterface.php
*
*/
public function implementsInterface(string $interfaceName) : bool
Expand All @@ -1092,7 +1092,7 @@ public function implementsInterface(string $interfaceName) : bool
/**
* Checks whether this reflection is an instantiable class
*
* @link http://php.net/manual/en/reflectionclass.isinstantiable.php
* @link https://php.net/manual/en/reflectionclass.isinstantiable.php
*/
public function isInstantiable() : bool
{
Expand All @@ -1103,7 +1103,7 @@ public function isInstantiable() : bool
/**
* Checks whether this is a reflection of a class that supports the clone operator
*
* @link http://php.net/manual/en/reflectionclass.iscloneable.php
* @link https://php.net/manual/en/reflectionclass.iscloneable.php
*/
public function isCloneable() : bool
{
Expand All @@ -1121,7 +1121,7 @@ public function isCloneable() : bool
/**
* Checks if iterateable
*
* @link http://php.net/manual/en/reflectionclass.isiterateable.php
* @link https://php.net/manual/en/reflectionclass.isiterateable.php
*/
public function isIterateable() : bool
{
Expand Down
2 changes: 1 addition & 1 deletion src/Reflection/ReflectionFunction.php
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public static function createFromNode(
* from this function, because you cannot disable user-defined functions.
*
* @todo https://github.com/Roave/BetterReflection/issues/14
* @see http://php.net/manual/en/ini.core.php#ini.disable-functions
* @see https://php.net/manual/en/ini.core.php#ini.disable-functions
*/
public function isDisabled() : bool
{
Expand Down
2 changes: 1 addition & 1 deletion src/Reflection/ReflectionType.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function allowsNull() : bool
/**
* Checks if it is a built-in type (i.e., it's not an object...)
*
* @see http://php.net/manual/en/reflectiontype.isbuiltin.php
* @see https://php.net/manual/en/reflectiontype.isbuiltin.php
*/
public function isBuiltin() : bool
{
Expand Down
8 changes: 4 additions & 4 deletions src/SourceLocator/Type/AutoloadSourceLocator.php
Original file line number Diff line number Diff line change
Expand Up @@ -172,8 +172,8 @@ private function locateFunctionByName(string $functionName) : ?string
* @param string $mode
* @param int $options
* @param string $opened_path
* @see http://php.net/manual/en/class.streamwrapper.php
* @see http://php.net/manual/en/streamwrapper.stream-open.php
* @see https://php.net/manual/en/class.streamwrapper.php
* @see https://php.net/manual/en/streamwrapper.stream-open.php
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingParameterTypeHint
*/
public function stream_open($path, $mode, $options, &$opened_path) : bool
Expand All @@ -188,8 +188,8 @@ public function stream_open($path, $mode, $options, &$opened_path) : bool
* @param string $path
* @param int $flags
* @return mixed[]
* @see http://php.net/manual/en/class.streamwrapper.php
* @see http://php.net/manual/en/streamwrapper.url-stat.php
* @see https://php.net/manual/en/class.streamwrapper.php
* @see https://php.net/manual/en/streamwrapper.url-stat.php
* @phpcsSuppress SlevomatCodingStandard.TypeHints.TypeHintDeclaration.MissingParameterTypeHint
*/
public function url_stat($path, $flags) : array
Expand Down

0 comments on commit ddaebb2

Please sign in to comment.