├── LICENSE ├── README.md ├── composer.json ├── config └── closure-table-comments.php ├── database └── migrations │ ├── 2020_08_17_000100_create_table_comments.php │ └── 2020_08_17_000200_create_table_structure_tree.php └── src ├── ClosureTableService.php ├── ClosureTableServiceProvider.php ├── Commentator.php ├── Exceptions └── ExceptionStructure.php ├── Interfaces └── IClosureTable.php ├── Models ├── Comment.php └── StructureTree.php ├── Node.php └── NodeCollection.php /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/composer.json -------------------------------------------------------------------------------- /config/closure-table-comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/config/closure-table-comments.php -------------------------------------------------------------------------------- /database/migrations/2020_08_17_000100_create_table_comments.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/database/migrations/2020_08_17_000100_create_table_comments.php -------------------------------------------------------------------------------- /database/migrations/2020_08_17_000200_create_table_structure_tree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/database/migrations/2020_08_17_000200_create_table_structure_tree.php -------------------------------------------------------------------------------- /src/ClosureTableService.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/ClosureTableService.php -------------------------------------------------------------------------------- /src/ClosureTableServiceProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/ClosureTableServiceProvider.php -------------------------------------------------------------------------------- /src/Commentator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Commentator.php -------------------------------------------------------------------------------- /src/Exceptions/ExceptionStructure.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Exceptions/ExceptionStructure.php -------------------------------------------------------------------------------- /src/Interfaces/IClosureTable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Interfaces/IClosureTable.php -------------------------------------------------------------------------------- /src/Models/Comment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Models/Comment.php -------------------------------------------------------------------------------- /src/Models/StructureTree.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Models/StructureTree.php -------------------------------------------------------------------------------- /src/Node.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/Node.php -------------------------------------------------------------------------------- /src/NodeCollection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/drandin/closure-table-comments/HEAD/src/NodeCollection.php --------------------------------------------------------------------------------