Skip to content
This repository was archived by the owner on Feb 21, 2019. It is now read-only.

Commit 2d238a8

Browse files
committed
used https
1 parent 5f6fbb2 commit 2d238a8

14 files changed

+28
-28
lines changed

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,16 @@
11
{
22
"name": "nette/reflection",
33
"description": "Nette PHP Reflection Component",
4-
"homepage": "http://nette.org",
4+
"homepage": "https://nette.org",
55
"license": ["BSD-3-Clause", "GPL-2.0", "GPL-3.0"],
66
"authors": [
77
{
88
"name": "David Grudl",
9-
"homepage": "http://davidgrudl.com"
9+
"homepage": "https://davidgrudl.com"
1010
},
1111
{
1212
"name": "Nette Community",
13-
"homepage": "http://nette.org/contributors"
13+
"homepage": "https://nette.org/contributors"
1414
}
1515
],
1616
"require": {

contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ The issue tracker is the preferred channel for bug reports, features requests
55
and submitting pull requests, but please respect the following restrictions:
66

77
* Please **do not** use the issue tracker for personal support requests (use
8-
[Nette forum](http://forum.nette.org) or [Stack Overflow](http://stackoverflow.com)).
8+
[Nette forum](https://forum.nette.org) or [Stack Overflow](http://stackoverflow.com)).
99

1010
* Please **do not** derail or troll issues. Keep the discussion on topic and
1111
respect the opinions of others.
@@ -21,7 +21,7 @@ fits with the scope and aims of the project. It's up to *you* to make a strong
2121
case to convince the project's developers of the merits of this feature.
2222

2323
Nette welcomes **pull requests**. If you'd like to contribute, please take a moment
24-
to [read the guidelines](http://nette.org/en/contributing) in order to make
24+
to [read the guidelines](https://nette.org/en/contributing) in order to make
2525
the contribution process easy and effective for everyone involved.
2626

2727
Thanks!

license.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ If your stuff is good, it will not take long to establish a reputation for yours
2121
New BSD License
2222
---------------
2323

24-
Copyright (c) 2004, 2014 David Grudl (http://davidgrudl.com)
24+
Copyright (c) 2004, 2014 David Grudl (https://davidgrudl.com)
2525
All rights reserved.
2626

2727
Redistribution and use in source and binary forms, with or without modification,

src/Bridges/ReflectionDI/ReflectionExtension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Bridges\ReflectionDI;

src/Reflection/Annotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/AnnotationsParser.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/ClassType.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/Extension.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/GlobalFunction.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/Helpers.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/IAnnotation.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/Method.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/Parameter.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

src/Reflection/Property.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?php
22

33
/**
4-
* This file is part of the Nette Framework (http://nette.org)
5-
* Copyright (c) 2004 David Grudl (http://davidgrudl.com)
4+
* This file is part of the Nette Framework (https://nette.org)
5+
* Copyright (c) 2004 David Grudl (https://davidgrudl.com)
66
*/
77

88
namespace Nette\Reflection;

0 commit comments

Comments
 (0)