$I->seeResponseEquals(file_get_contents('path_to_file'));
<cp:lastModifiedBy>Unknown Creator</cp:lastModifiedBy>
<dcterms:created xsi:type="dcterms:W3CDTF">2023-05-11T13:10:33+00:00</dcterms:created>
<dcterms:modified xsi:type="dcterms:W3CDTF">2023-05-11T13:10:33+00:00</dcterms:modified>
<dc:title>Untitled Spreadsheet</dc:title>
App\Proxy\EntityManagerProxy:
decorates: 'doctrine.orm.entity_manager'
class EntityManagerProxy implements EntityManagerInterface
{
private ObjectManager $entityManager;
private ManagerRegistry $doctrine;
public function __construct(ObjectManager $entityManager, ManagerRegistry $doctrine)
{
$this->entityManager = $entityManager;
$this->doctrine = $doctrine;
}
/**
* @param $object
* @return void
* @throws Exception
*/
public function persist($object): void
{
$this->correctionConnect();
$this->entityManager->persist($object);
}
/**
* @return void
* @throws Exception
*/
public function flush(): void
{
$this->correctionConnect();
$this->entityManager->flush();
}
private function correctionConnect(): void
{
// Для ошибок когда падает сама база или соединение с ней, например:
// SQLSTATE[57P01]: Admin shutdown: 7 FATAL: terminating connection due to administrator command
// SQLSTATE[08006] [7] could not translate host name "postgres" to address: Temporary failure in name resolution
// (например, когда на время падает контейнер с postgres)
if ($this->entityManager->getConnection()->ping() === false) {
$this->entityManager->getConnection()->close();
$this->entityManager->getConnection()->connect();
}
// Для ошибки "The EntityManager is closed" (например, при ошибки SQL-запроса)
if (!$this->entityManager->isOpen()) {
$this->doctrine->resetManager();
$this->entityManager = $this->doctrine->getManager();
}
}
// Все другие методы для EntityManagerInterface перебрасываются напрямую на базовый EntityManager
server {
listen 80;
server_name test.loc;
root /var/www/test.loc;
index index.php index.html index.html;
access_log /var/log/nginx/test.loc.log;
error_log /var/log/nginx/test.loc.error;
gzip on;
gzip_vary on;
gzip_min_length 1000;
gzip_proxied expired no-cache no-store private auth;
gzip_types text/plain text/css application/json application/x-javascript text/xml application/xml application/xml+rss text/javascript application/javascript image/svg+xml;
charset utf-8;
client_max_body_size 32m;
location / {
try_files $uri $uri/ /index.php$is_args$args;
}
location ~ \.php$ {
try_files $uri =404;
fastcgi_split_path_info ^(.+\.php)(/.+)$;
fastcgi_pass unix:/run/php/php7.4-fpm.sock;
#fastcgi_pass 127.0.0.1:9000;
fastcgi_index index.php;
fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
include fastcgi_params;
fastcgi_param QUERY_STRING $query_string;
fastcgi_param REQUEST_METHOD $request_method;
fastcgi_param CONTENT_TYPE $content_type;
fastcgi_param CONTENT_LENGTH $content_length;
fastcgi_intercept_errors on;
fastcgi_ignore_client_abort off;
fastcgi_connect_timeout 60;
fastcgi_send_timeout 180;
fastcgi_read_timeout 180;
fastcgi_buffer_size 128k;
fastcgi_buffers 4 256k;
fastcgi_busy_buffers_size 256k;
fastcgi_temp_file_write_size 256k;
}
location = /favicon.ico {
log_not_found off;
access_log off;
}
location ~ /\.ht { deny all; }
}
На хостинге компосер не установлен.
var_dump((new B())->a());
Я не могу проверить, что попало в базу, потому что я не знаю Id, по которому туда попадут значения
/**
* @ORM\Entity(repositoryClass=PostRepository::class)
* @ORM\HasLifecycleCallbacks()
*/
class Post
{
use IdTrait;
use CreatedAtTrait;
// ...
/**
* Converts a word into the format for a Doctrine table name. Converts 'ModelName' to 'model_name'.
*/
public function tableize(string $word) : string
{
$tableized = preg_replace('~(?<=\\w)([A-Z])~u', '_$1', $word);
if ($tableized === null) {
throw new RuntimeException(sprintf(
'preg_replace returned null for value "%s"',
$word
));
}
return mb_strtolower($tableized);
}
/**
* Converts a word into the format for a Doctrine class name. Converts 'table_name' to 'TableName'.
*/
public function classify(string $word) : string
{
return str_replace([' ', '_', '-'], '', ucwords($word, ' _-'));
}
class Telegram
{
public $chat_id;
public function __construct($a)
{
$this->chat_id = $a;
}
}
class DataBase extends Telegram
{
public function __construct($a)
{
parent::__construct($a);
print('constructed');
}
}
$a = new Telegram(3);
$b = new DataBase(123);
print($b->chat_id); // constructed123
В связи со сложившейся ситуацией, у меня возникает вопрос к людям с опытом, - как дальше быть? Есть ли шанс попасть в разработку мобильных приложений без законченных примеров?
Обучение было полным шлаком, изучал всё сам, так как от пар просто не было толку, а задания на подобие конкатенации строк продолжались до 4-го курса.
В итоге после написания сильно прогорел
что делать?
Мне 14, и это лето я решил посветить изучению языка c++, в то время , как мои одноклассники курят, и считают это чем-то крутым.
Я хочу создавать игры на языке c++
возможно ли, создать хороший проект одному?
И вообще, какой уровень знаний нужен для этого?
<?xml version="1.0" encoding="utf-8"?>
<phpunit bootstrap="./vendor/autoload.php"
colors="true"
convertErrorsToExceptions="true"
convertNoticesToExceptions="true"
convertWarningsToExceptions="true"
stopOnFailure="false">
<testsuites>
<testsuite name="Test Suite">
<directory>./tests</directory>
</testsuite>
</testsuites>
<filter>
<whitelist>
<directory suffix=".php">./src/</directory>
</whitelist>
</filter>
</phpunit>