どの構造が有用/より良いでしょうか?
(PHP)
構造A
+ httpLib/
| . Index.php / Factory
| . API.php
| . _Exception.php
| + Response/
| | . Interface.php
| | . ...
| + Request/
| | . Interface.php
| | . ...
構造B
+ httpLib/
| . Response.php
| . Request.php
| . API.php
| . _Exception.php
| + Client/
| | . Interface.php
| | . Socket.php
| | . Stream.php
| | . cURL.php
...
(より良いタイトルは見つかりませんでした)
ありがとう。