diff --git a/src/com/zephir/ZephirFileType.java b/src/com/zephir/ZephirFileType.java index 75ab975..60a41f8 100644 --- a/src/com/zephir/ZephirFileType.java +++ b/src/com/zephir/ZephirFileType.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/ZephirFileTypeFactory.java b/src/com/zephir/ZephirFileTypeFactory.java index bd0cb54..3417c9d 100644 --- a/src/com/zephir/ZephirFileTypeFactory.java +++ b/src/com/zephir/ZephirFileTypeFactory.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/ZephirIcons.java b/src/com/zephir/ZephirIcons.java index 06768e6..e184824 100644 --- a/src/com/zephir/ZephirIcons.java +++ b/src/com/zephir/ZephirIcons.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/ZephirLanguage.java b/src/com/zephir/ZephirLanguage.java index 9d09af1..baf6fb6 100644 --- a/src/com/zephir/ZephirLanguage.java +++ b/src/com/zephir/ZephirLanguage.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/ZephirParserDefinition.java b/src/com/zephir/ZephirParserDefinition.java index b55093c..72da6fb 100644 --- a/src/com/zephir/ZephirParserDefinition.java +++ b/src/com/zephir/ZephirParserDefinition.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/actions/ZephirNewClassAction.java b/src/com/zephir/actions/ZephirNewClassAction.java index c60447f..015ea58 100644 --- a/src/com/zephir/actions/ZephirNewClassAction.java +++ b/src/com/zephir/actions/ZephirNewClassAction.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/completion/Priority.java b/src/com/zephir/completion/Priority.java index c3f5d06..9edea6d 100644 --- a/src/com/zephir/completion/Priority.java +++ b/src/com/zephir/completion/Priority.java @@ -1,10 +1,16 @@ -package com.zephir.completion; - /** - * Completion priority + * Copyright (c) 2014-2017 Phalcon Team + * + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: + * + * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ -public class Priority { +package com.zephir.completion; + +public class Priority { public static double METHOD_SCOPE_PRIORITY = 2.0; public static double CLASS_METHOD_PRIORITY = 1.7; public static double CLASS_CONSTS_PRIORITY = 1.6; diff --git a/src/com/zephir/completion/ZephirKeywordCompletionContributor.java b/src/com/zephir/completion/ZephirKeywordCompletionContributor.java index df763d8..f439791 100644 --- a/src/com/zephir/completion/ZephirKeywordCompletionContributor.java +++ b/src/com/zephir/completion/ZephirKeywordCompletionContributor.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/completion/providers/ClassScopeKeywordsProvider.java b/src/com/zephir/completion/providers/ClassScopeKeywordsProvider.java index 47252b2..8435204 100644 --- a/src/com/zephir/completion/providers/ClassScopeKeywordsProvider.java +++ b/src/com/zephir/completion/providers/ClassScopeKeywordsProvider.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/completion/providers/FileScopeKeywordsProvider.java b/src/com/zephir/completion/providers/FileScopeKeywordsProvider.java index 83aadd3..ef0441b 100644 --- a/src/com/zephir/completion/providers/FileScopeKeywordsProvider.java +++ b/src/com/zephir/completion/providers/FileScopeKeywordsProvider.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/completion/providers/MethodScopeCompletionProvider.java b/src/com/zephir/completion/providers/MethodScopeCompletionProvider.java index f786828..3d7802d 100644 --- a/src/com/zephir/completion/providers/MethodScopeCompletionProvider.java +++ b/src/com/zephir/completion/providers/MethodScopeCompletionProvider.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/folding/ZephirFoldingBuilder.java b/src/com/zephir/folding/ZephirFoldingBuilder.java index fc63c44..2591387 100644 --- a/src/com/zephir/folding/ZephirFoldingBuilder.java +++ b/src/com/zephir/folding/ZephirFoldingBuilder.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/formatting/ZephirBlock.java b/src/com/zephir/formatting/ZephirBlock.java index 8595a32..2d2af05 100644 --- a/src/com/zephir/formatting/ZephirBlock.java +++ b/src/com/zephir/formatting/ZephirBlock.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/formatting/ZephirFormattingModelBuilder.java b/src/com/zephir/formatting/ZephirFormattingModelBuilder.java index 3aae858..6dc9736 100644 --- a/src/com/zephir/formatting/ZephirFormattingModelBuilder.java +++ b/src/com/zephir/formatting/ZephirFormattingModelBuilder.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/highlight/ZephirColorSettingsPage.java b/src/com/zephir/highlight/ZephirColorSettingsPage.java index 20e03d5..13c4c7d 100644 --- a/src/com/zephir/highlight/ZephirColorSettingsPage.java +++ b/src/com/zephir/highlight/ZephirColorSettingsPage.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/highlight/ZephirSyntaxHighlighter.java b/src/com/zephir/highlight/ZephirSyntaxHighlighter.java index eb143ef..ecede49 100644 --- a/src/com/zephir/highlight/ZephirSyntaxHighlighter.java +++ b/src/com/zephir/highlight/ZephirSyntaxHighlighter.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/highlight/ZephirSyntaxHighlighterFactory.java b/src/com/zephir/highlight/ZephirSyntaxHighlighterFactory.java index 1361216..94e18d5 100644 --- a/src/com/zephir/highlight/ZephirSyntaxHighlighterFactory.java +++ b/src/com/zephir/highlight/ZephirSyntaxHighlighterFactory.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/lang/ZephirBraceMatcher.java b/src/com/zephir/lang/ZephirBraceMatcher.java index 755e8a9..e92c0ae 100644 --- a/src/com/zephir/lang/ZephirBraceMatcher.java +++ b/src/com/zephir/lang/ZephirBraceMatcher.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/lang/ZephirCommenter.java b/src/com/zephir/lang/ZephirCommenter.java index c84a511..abe116f 100644 --- a/src/com/zephir/lang/ZephirCommenter.java +++ b/src/com/zephir/lang/ZephirCommenter.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/lexer/ZephirLexerAdapter.java b/src/com/zephir/lexer/ZephirLexerAdapter.java index a7bdd99..7a38e49 100644 --- a/src/com/zephir/lexer/ZephirLexerAdapter.java +++ b/src/com/zephir/lexer/ZephirLexerAdapter.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/parser/ZephirParserUtil.java b/src/com/zephir/parser/ZephirParserUtil.java index b717759..8b20608 100644 --- a/src/com/zephir/parser/ZephirParserUtil.java +++ b/src/com/zephir/parser/ZephirParserUtil.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/psi/ZephirElementType.java b/src/com/zephir/psi/ZephirElementType.java index 3cf19ce..71c4124 100644 --- a/src/com/zephir/psi/ZephirElementType.java +++ b/src/com/zephir/psi/ZephirElementType.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/psi/ZephirFile.java b/src/com/zephir/psi/ZephirFile.java index 26b6f5d..551b954 100644 --- a/src/com/zephir/psi/ZephirFile.java +++ b/src/com/zephir/psi/ZephirFile.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */ diff --git a/src/com/zephir/psi/ZephirTokenType.java b/src/com/zephir/psi/ZephirTokenType.java index 0b8711a..9e735c8 100644 --- a/src/com/zephir/psi/ZephirTokenType.java +++ b/src/com/zephir/psi/ZephirTokenType.java @@ -1,9 +1,9 @@ /** * Copyright (c) 2014-2017 Phalcon Team * - * Licensed under the MIT License (MIT); - * You may not use this file except in compliance with the License. - * You may obtain a copy of the License at: + * This source file is subject the MIT license, that is bundled with + * this package in the file LICENSE, and is available through the + * world-wide-web at the following url: * * https://github.com/phalcon/zephir-idea-plugin/blob/master/LICENSE */