Clint Nelissen
|
0305a4827c
|
Moved globally defined constants to class constants
|
2014-12-09 10:46:30 -08:00 |
|
Clint Nelissen
|
f085f91d16
|
Added SSH_AGENT_FAILURE constant back in
|
2014-12-04 10:38:58 -08:00 |
|
Clint Nelissen
|
19b4d0ec0c
|
Missed a couple SYSTEM_ prefixes
|
2014-12-04 08:28:05 -08:00 |
|
Clint Nelissen
|
f7fb93276a
|
Moved global constants to class constants
|
2014-12-03 18:44:30 -08:00 |
|
Andreas Fischer
|
638e62d60a
|
Remove LICENSE text from source code files.
|
2014-12-03 18:49:33 +01:00 |
|
Clint Nelissen
|
ef3c96a46f
|
Code sniff php version fix
|
2014-12-03 08:59:01 -08:00 |
|
Clint Nelissen
|
45ed270556
|
Removed duplicated docblock text
|
2014-12-02 08:18:43 -08:00 |
|
Clint Nelissen
|
b32c05b64e
|
Split System_SSH_Agent and System_SSH_Agent_Identity into separate files
|
2014-12-01 19:18:58 -08:00 |
|
Andreas Fischer
|
67aedc240b
|
Change constructors from class name to __construct().
This has been produced as follows:
<?php
$replace = $files = [];
$it = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($argv[1]));
foreach ($it as $fileinfo) {
if ($fileinfo->getExtension() === 'php') {
$file = $fileinfo->getPathname();
$content = file_get_contents($file);
$files[$file] = $content;
$tokens = token_get_all($content);
foreach ($tokens as $key => $value) {
if ($value[0] === T_CLASS) {
$class = $tokens[$key + 2][1];
$replace += array(
"$class::$class(" => "$class::__construct(",
"parent::$class(" => "parent::__construct(",
"function $class(" => "function __construct(",
);
}
}
}
}
foreach ($files as $file => $content) {
file_put_contents(
$file,
str_replace(
array_keys($replace),
array_values($replace),
$content
)
);
}
|
2014-06-16 17:06:34 +02:00 |
|
Andreas Fischer
|
e6f87318f5
|
Adjust documentation to coding guidelines: No () around include.
|
2014-06-01 23:28:49 +02:00 |
|
terrafrost
|
50b250ce69
|
SSH_Agent: CS updates
|
2014-03-30 16:32:05 -05:00 |
|
terrafrost
|
924014fe72
|
SSH_Agent: mv SSH_Agent to SSH/Agent and create SSH_Agent for BC
|
2014-03-30 08:49:22 -05:00 |
|