Skip to content

Commit

Permalink
docs: minor fixes in docs [21]
Browse files Browse the repository at this point in the history
  • Loading branch information
lotyp authored and gitbook-bot committed Jul 3, 2024
1 parent b52b819 commit 3cb2bc0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 8 additions & 4 deletions docs/active-repositories/repositories.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
---
description: There are a lot of repositories
---

# Repositories

Repositories in the Cycle ORM Active Record implementation provide a layer of abstraction between your domain/business logic and the data access layer. They encapsulate the logic for retrieving, storing, and querying entities, offering a consistent interface for working with your data.

### ActiveRepository

The `ActiveRepository` class is the core of the repository pattern in this Active Record implementation. It provides a set of methods to interact with your entities.



2 changes: 1 addition & 1 deletion docs/general/contributing.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ git commit -am 'fix: something has been fixed'
**Allowed Prefixes:**
<table data-full-width="true"><thead><tr><th width="180">Prefix</th><th>Purpose</th></tr></thead><tbody><tr><td><code>feat:</code></td><td>Introduces a new feature</td></tr><tr><td><code>fix:</code></td><td>Fixes a bug</td></tr><tr><td><code>perf:</code></td><td>Improves performance</td></tr><tr><td><code>docs:</code></td><td>Documentation only changes</td></tr><tr><td><code>style:</code></td><td>Code style changes (formatting, missing semi-colons, etc.)</td></tr><tr><td><code>deps:</code></td><td>Updates dependencies</td></tr><tr><td><code>refactor:</code></td><td>Code changes that neither fixes a bug nor adds a feature</td></tr><tr><td><code>ci:</code></td><td>Changes to our CI configuration files and scripts</td></tr><tr><td><code>test:</code></td><td>Adding missing tests or correcting existing tests</td></tr><tr><td><code>revert:</code></td><td>Reverts a previous commit</td></tr><tr><td><code>build:</code></td><td>Changes that affect the build system or external dependencies</td></tr><tr><td><code>chore:</code></td><td>Other changes that don't modify src or test files</td></tr><tr><td><code>security:</code></td><td>A code change that fixes a security issue</td></tr></tbody></table>
<table data-full-width="false"><thead><tr><th width="160">Prefix</th><th>Purpose</th></tr></thead><tbody><tr><td><code>feat:</code></td><td>Introduces a new feature</td></tr><tr><td><code>fix:</code></td><td>Fixes a bug</td></tr><tr><td><code>perf:</code></td><td>Improves performance</td></tr><tr><td><code>docs:</code></td><td>Documentation only changes</td></tr><tr><td><code>style:</code></td><td>Code style changes (formatting, missing semi-colons, etc.)</td></tr><tr><td><code>deps:</code></td><td>Updates dependencies</td></tr><tr><td><code>refactor:</code></td><td>Code changes that neither fixes a bug nor adds a feature</td></tr><tr><td><code>ci:</code></td><td>Changes to our CI configuration files and scripts</td></tr><tr><td><code>test:</code></td><td>Adding missing tests or correcting existing tests</td></tr><tr><td><code>revert:</code></td><td>Reverts a previous commit</td></tr><tr><td><code>build:</code></td><td>Changes that affect the build system or external dependencies</td></tr><tr><td><code>chore:</code></td><td>Other changes that don't modify src or test files</td></tr><tr><td><code>security:</code></td><td>A code change that fixes a security issue</td></tr></tbody></table>
### 📦 PHAR Dependencies
Expand Down

0 comments on commit 3cb2bc0

Please sign in to comment.