Skip to content

Add phpcs + fix code #446

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 37 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
37 commits
Select commit Hold shift + click to select a range
c1a8ffb
Fix namespace
pajon Mar 19, 2020
80d8e02
Add phpcs + config
pajon Mar 19, 2020
850e3bf
Add phpcs into travis build
pajon Mar 19, 2020
bd85d95
Remove also @link annotation
pajon Mar 20, 2020
c63b64a
Simplify copyright header to be equals as PHPUnit
pajon Mar 20, 2020
843733a
Add type hints in SeleniumBrowserSuite
pajon Mar 20, 2020
99496be
Add type hints in Selenium2TestCase + fix test
pajon Mar 20, 2020
dede92e
Add type hints in Driver
pajon Mar 20, 2020
e063dee
Add type hints in SessionStrategy
pajon Mar 20, 2020
011c72f
Add type hints in Accessor
pajon Mar 20, 2020
4cdeb95
Add type hints in Select
pajon Mar 20, 2020
809d00e
Add type hints in Element
pajon Mar 20, 2020
9a02613
Add type hints in Cookie
pajon Mar 20, 2020
e75e2a1
Add type hints in Timeouts
pajon Mar 20, 2020
13244df
Add type hints in Builder
pajon Mar 20, 2020
4fcb8c1
Add type hints in CommandsHolder
pajon Mar 20, 2020
bd50d49
Add type hints in ElementCriteria
pajon Mar 20, 2020
01e0625
Add type hints in KeysHolder
pajon Mar 20, 2020
0d3b857
Add type hints in Response
pajon Mar 20, 2020
91ba6cc
Add type hints in ScreenshotListener
pajon Mar 20, 2020
58d3aad
Add type hints in Session
pajon Mar 20, 2020
ed92258
Add type hints in URL
pajon Mar 20, 2020
570891d
Add type hints in WaitUntil
pajon Mar 20, 2020
97ffcbb
Add type hints in Command
pajon Mar 20, 2020
c6cf9f9
Add type hints in Active
pajon Mar 20, 2020
097f0f8
Add type hints in AlertText
pajon Mar 20, 2020
dbeb655
Add type hints in File
pajon Mar 20, 2020
826717f
Add type hints in Frame
pajon Mar 20, 2020
d9c6506
Add type hints in Keys
pajon Mar 20, 2020
6151246
Add type hints in Location
pajon Mar 20, 2020
fd1398f
Add type hints in Log
pajon Mar 20, 2020
d85cb32
Add type hints in MoveTo
pajon Mar 20, 2020
aa4f8b1
Add type hints in Orientation
pajon Mar 20, 2020
5bf5ce3
Add type hints in Url
pajon Mar 20, 2020
aa3be7b
Add type hints in Window
pajon Mar 20, 2020
395005f
Fix type hints to pass tests
pajon Mar 21, 2020
57355e7
Fix type hints to pass tests
pajon Jun 15, 2020
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,7 @@ matrix:
allow_failures:
- php: hhvm

before_script: ./.ci/before_script.sh
before_script:
- ./.ci/before_script.sh
- vendor/bin/phpcs --standard=ruleset.xml PHPUnit/
script: "vendor/bin/phpunit Tests"
Loading