Skip to content

Commit 0234ee3

Browse files
committed
Remove also @link annotation
1 parent f18bd79 commit 0234ee3

Some content is hidden

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

58 files changed

+8
-216
lines changed

PHPUnit/Extensions/Selenium2TestCase.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
3636
*
37-
* @link http://www.phpunit.de/
3837
*/
3938

4039
namespace PHPUnit\Extensions;
@@ -66,8 +65,6 @@
6665
* (WebDriver API and JsonWire protocol) to provide
6766
* the functionality required for web testing.
6867
*
69-
* @link http://www.phpunit.de/
70-
*
7168
* @method void acceptAlert() Press OK on an alert, or confirms a dialog
7269
* @method mixed alertText() alertText($value = NULL) Gets the alert dialog text, or sets the text for a prompt dialog
7370
* @method void back()

PHPUnit/Extensions/Selenium2TestCase/Command.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase;
@@ -43,8 +41,6 @@
4341

4442
/**
4543
* Base class for implementing commands with special semantics.
46-
*
47-
* @link http://www.phpunit.de/
4844
*/
4945
abstract class Command
5046
{

PHPUnit/Extensions/Selenium2TestCase/CommandsHolder.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase;
@@ -45,8 +43,6 @@
4543

4644
/**
4745
* Object representing elements, or everything that may have subcommands.
48-
*
49-
* @link http://www.phpunit.de/
5046
*/
5147
abstract class CommandsHolder
5248
{

PHPUnit/Extensions/Selenium2TestCase/Driver.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase;
@@ -44,8 +42,6 @@
4442

4543
/**
4644
* Driver for creating browser session with Selenium 2 (WebDriver API).
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Driver
5147
{

PHPUnit/Extensions/Selenium2TestCase/Element.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase;
@@ -53,8 +51,6 @@
5351
/**
5452
* Object representing a DOM element.
5553
*
56-
* @link http://www.phpunit.de/
57-
*
5854
* @method string attribute($name) Retrieves an element's attribute
5955
* @method void clear() Empties the content of a form element.
6056
* @method void click() Clicks on element

PHPUnit/Extensions/Selenium2TestCase/Element/Accessor.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase\Element;
@@ -46,8 +44,6 @@
4644

4745
/**
4846
* Provides access to /element and /elements commands
49-
*
50-
* @link http://www.phpunit.de/
5147
*/
5248
abstract class Accessor extends CommandsHolder
5349
{

PHPUnit/Extensions/Selenium2TestCase/Element/Select.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase\Element;
@@ -44,8 +42,6 @@
4442

4543
/**
4644
* Object representing a <select> element.
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Select extends Element
5147
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Attribute.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase\ElementCommand;
@@ -44,8 +42,6 @@
4442

4543
/**
4644
* Retrieves an attribute of a DOM element.
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Attribute extends Command
5147
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Click.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase\ElementCommand;
@@ -43,8 +41,6 @@
4341

4442
/**
4543
* Clicks ok on an alert popup.
46-
*
47-
* @link http://www.phpunit.de/
4844
*/
4945
class Click extends Command
5046
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Css.php

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,6 @@
3333
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
3434
* ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
3535
* POSSIBILITY OF SUCH DAMAGE.
36-
*
37-
* @link http://www.phpunit.de/
3836
*/
3937

4038
namespace PHPUnit\Extensions\Selenium2TestCase\ElementCommand;
@@ -44,8 +42,6 @@
4442

4543
/**
4644
* Retrieves the value of a CSS property.
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Css extends Command
5147
{

0 commit comments

Comments
 (0)