-
Notifications
You must be signed in to change notification settings - Fork 105
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added one more test, improved docs and CONTRIBUTING.md
- Loading branch information
Showing
6 changed files
with
116 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
Welcome developers! | ||
================== | ||
|
||
Before making any contribution you should now: | ||
|
||
- All code contribution should follow PSR-1 and PSR-2 coding style standards. (Thanks to [Alexey Ashurok](https://github.com/aotd1)) | ||
- You should code the tests for any function you add, some times is not possible but try doing it. | ||
- All functions need to be properly documented, all comments, variable names, function names only on english language. | ||
- Variables and functions names should be self descriptive. | ||
|
||
|
||
Installation | ||
------------ | ||
|
||
Of course you should [fork the repo](https://github.com/ZzAntares/ProxmoxVE/fork), then after cloning your forked repo: | ||
|
||
```sh | ||
$ composer install --dev # run cmd inside the project folder | ||
``` | ||
|
||
What needs to be done? | ||
---------------------- | ||
|
||
What ever you think will improve this library and also let's wait the people to open issues and then we'll see. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
<?php | ||
|
||
namespace ProxmoxVE\CustomCredentials; | ||
|
||
class BadCredentials | ||
{ | ||
private $hostname; | ||
private $username; | ||
private $password; | ||
|
||
|
||
public function __construct($host, $user, $pass) | ||
{ | ||
$this->hostname = $host; | ||
$this->username = $user; | ||
$this->password = $pass; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters