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

-3
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

-4
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

-4
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

-4
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

-4
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

-4
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

-4
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

-4
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

-4
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

-4
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
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Equals.php

-4
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;
@@ -46,8 +44,6 @@
4644

4745
/**
4846
* Checks equality (same element on the page) with another DOM element.
49-
*
50-
* @link http://www.phpunit.de/
5147
*/
5248
class Equals extends Command
5349
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/GenericAccessor.php

-4
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
* Class for implementing commands that just return a value
4644
* (obtained with GET).
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class GenericAccessor extends Command
5147
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/GenericPost.php

-4
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
* Class for implementing commands that just accomplishes an action (via POST).
46-
*
47-
* @link http://www.phpunit.de/
4844
*/
4945
class GenericPost extends Command
5046
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Rect.php

-4
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 element's coordinates
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Rect extends Command
5147
{

PHPUnit/Extensions/Selenium2TestCase/ElementCommand/Value.php

-4
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
* Get and set the element's value attribute.
47-
*
48-
* @link http://www.phpunit.de/
4945
*/
5046
class Value extends Keys
5147
{

PHPUnit/Extensions/Selenium2TestCase/ElementCriteria.php

-3
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,7 +42,6 @@
4442
/**
4543
* Conditions for selecting a DOM element.
4644
*
47-
* @link http://www.phpunit.de/
4845
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/element
4946
*/
5047
class ElementCriteria extends ArrayObject

PHPUnit/Extensions/Selenium2TestCase/Exception.php

-4
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
* Indicates an exception during the execution of Selenium 2 commands.
46-
*
47-
* @link http://www.phpunit.de/
4844
*/
4945
class Exception extends RuntimeException
5046
{

PHPUnit/Extensions/Selenium2TestCase/Keys.php

-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,13 @@
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;
4139

4240
/**
4341
* Class to hold the special keys Unicode entities
4442
*
45-
* @link http://www.phpunit.de/
4643
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/element/:id/value
4744
*/
4845
class Keys

PHPUnit/Extensions/Selenium2TestCase/KeysHolder.php

-3
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,13 @@
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;
4139

4240
/**
4341
* Class-mapper, that converts requested special key into correspondent Unicode character
4442
*
45-
* @link http://www.phpunit.de/
4643
* @see http://code.google.com/p/selenium/wiki/JsonWireProtocol#/session/:sessionId/element/:id/value
4744
*/
4845
class KeysHolder

PHPUnit/Extensions/Selenium2TestCase/NoSeleniumException.php

-5
Original file line numberDiff line numberDiff line change
@@ -33,15 +33,10 @@
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;
4139

42-
/**
43-
* @link http://www.phpunit.de/
44-
*/
4540
class NoSeleniumException extends \PHPUnit\Extensions\Selenium2TestCase\Exception
4641
{
4742
}

PHPUnit/Extensions/Selenium2TestCase/Response.php

-4
Original file line numberDiff line numberDiff line change
@@ -33,16 +33,12 @@
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;
4139

4240
/**
4341
* Object representing an HTTP response from the Selenium Server.
44-
*
45-
* @link http://www.phpunit.de/
4642
*/
4743
class Response
4844
{

PHPUnit/Extensions/Selenium2TestCase/ScreenshotListener.php

-4
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;
@@ -48,8 +46,6 @@
4846

4947
/**
5048
* Base class for implementing commands with special semantics.
51-
*
52-
* @link http://www.phpunit.de/
5349
*/
5450
class ScreenshotListener implements TestListener
5551
{

0 commit comments

Comments
 (0)