Skip to content

Commit c66456f

Browse files
committed
Clarify license
- Add link to official license text - Use SPDX identifier for license - Clarify that the code is GPL or later - See issue #89 Signed-off-by: Michal Čihař <[email protected]>
1 parent d6a8791 commit c66456f

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

72 files changed

+73
-73
lines changed

src/Component.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*
2121
* @category Components
2222
* @package SqlParser
23-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
23+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2424
*/
2525
abstract class Component
2626
{

src/Components/AlterOperation.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Components
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class AlterOperation extends Component
2525
{

src/Components/Array2d.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Keywords
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class Array2d extends Component
2525
{

src/Components/ArrayObj.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Components
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class ArrayObj extends Component
2525
{

src/Components/Condition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Keywords
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class Condition extends Component
2525
{

src/Components/CreateDefinition.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
* @category Components
2525
* @package SqlParser
2626
* @subpackage Components
27-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
27+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2828
*/
2929
class CreateDefinition extends Component
3030
{

src/Components/DataType.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Components
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class DataType extends Component
2525
{

src/Components/Expression.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
* @category Components
2323
* @package SqlParser
2424
* @subpackage Components
25-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
25+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2626
*/
2727
class Expression extends Component
2828
{

src/Components/ExpressionArray.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Keywords
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class ExpressionArray extends Component
2525
{

src/Components/FunctionCall.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
* @category Keywords
2020
* @package SqlParser
2121
* @subpackage Components
22-
* @license http://opensource.org/licenses/GPL-2.0 GNU Public License
22+
* @license https://www.gnu.org/licenses/gpl-2.0.txt GPL-2.0+
2323
*/
2424
class FunctionCall extends Component
2525
{

0 commit comments

Comments
 (0)