| 1 | <?php |
||
| 7 | trait WindowsFileAppenderTrait |
||
| 8 | { |
||
| 9 | use FileAppenderTrait; |
||
| 10 | |||
| 11 | /** |
||
| 12 | * Joins two path segments together. |
||
| 13 | * |
||
| 14 | * @param string $start The starting segment. |
||
| 15 | * @param string $end The ending segment. |
||
| 16 | * @return string The joined segments. |
||
| 17 | */ |
||
| 18 | protected function _joinPaths($start, $end) |
||
| 22 | |||
| 23 | /** |
||
| 24 | * Checks to see if a path is just a single atom (no directory). |
||
| 25 | * |
||
| 26 | * @param string $path The path to check. |
||
| 27 | * @return boolean True if it's an atom, false otherwise. |
||
| 28 | */ |
||
| 29 | protected function _isAtom($path) |
||
| 33 | } |
||
| 34 |